Changeset 5124 for trunk/admin
- Timestamp:
- Mar 13, 2010, 1:23:05 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/include/functions_upgrade.php
r5021 r5124 69 69 } 70 70 71 // Create empty local files to avoid log errors72 function create_empty_local_files()73 {74 $files =75 array (76 PHPWG_ROOT_PATH . 'template-common/local-layout.css',77 PHPWG_ROOT_PATH . 'template/yoga/local-layout.css'78 );79 80 foreach ($files as $path)81 {82 if (!file_exists ($path))83 {84 $file = @fopen($path, "w");85 @fwrite($file , '/* You can modify this file */');86 @fclose($file);87 }88 }89 }90 91 71 // Deactivate all non-standard plugins 92 72 function deactivate_non_standard_plugins()
Note: See TracChangeset
for help on using the changeset viewer.