Changeset 9878
- Timestamp:
- 11/11/08 15:47:16 (2 months ago)
- Files:
-
- trunk/jaws/html/install/stages/Database.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/jaws/html/install/stages/Database.php
r9860 r9878 283 283 log_install($result->getMessage()); 284 284 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"); 285 296 } 286 297
