Changeset 9878

Show
Ignore:
Timestamp:
11/11/08 15:47:16 (2 months ago)
Author:
afz
Message:

//Make sure user don't have any data/cache/registry|acl stuff

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/jaws/html/install/stages/Database.php

    r9860 r9878  
    283283            log_install($result->getMessage()); 
    284284            return $result; 
     285        } 
     286 
     287        //Make sure user don't have any data/cache/registry|acl stuff 
     288        $path = JAWS_DATA . 'cache/registry'; 
     289        if (!Jaws_Utils::Delete($path, false)) { 
     290            log_install("Can't delete $path"); 
     291        } 
     292 
     293        $path = JAWS_DATA . 'cache/acl'; 
     294        if (!Jaws_Utils::Delete($path, false)) { 
     295            log_install("Can't delete $path"); 
    285296        } 
    286297