diff options
author | patdenice <patdenice@piwigo.org> | 2008-01-20 23:15:03 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2008-01-20 23:15:03 +0000 |
commit | 69b27bdc31ebc45c11bca1799b32625ef5bece73 (patch) | |
tree | b0dfbb3e0a44b2387c333d492e7edd212440686e | |
parent | 5a07213fba13aff28f9acdc37f9c79481b78a3ef (diff) |
Place for create empty local files in install.php
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2188 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | install.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install.php b/install.php index 33ccec937..a995f8777 100644 --- a/install.php +++ b/install.php @@ -207,9 +207,6 @@ include(PHPWG_ROOT_PATH . 'admin/include/functions.php'); include(PHPWG_ROOT_PATH . 'admin/include/functions_upgrade.php'); include(PHPWG_ROOT_PATH . 'include/template.php'); -// Create empty local files to avoid log errors -create_empty_local_files(); - if ( isset( $_POST['language'] )) { $language = strip_tags($_POST['language']); @@ -302,6 +299,9 @@ define(\'PHPWG_INSTALLED\', true); } @fputs($fp, $file_content, strlen($file_content)); @fclose($fp); + + // Create empty local files to avoid log errors + create_empty_local_files(); // tables creation, based on phpwebgallery_structure.sql execute_sqlfile( |