diff options
author | patdenice <patdenice@piwigo.org> | 2008-11-12 12:40:20 +0000 |
---|---|---|
committer | patdenice <patdenice@piwigo.org> | 2008-11-12 12:40:20 +0000 |
commit | cd9f45fd1dd2ebc2e6795c15a3f3eddb38e95e7d (patch) | |
tree | a1313450a3956f3be90cb6ad1f3309a93d32705d /install/upgrade_1.3.1.php | |
parent | 1d9821abd15519ad4732854e277ae9163f5e2a7d (diff) |
- Remove advises of file removal at the end of install/upgrade.
- Automatic change mysql.inc.php if file is writable, else purpose manual change to user.
git-svn-id: http://piwigo.org/svn/trunk@2863 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install/upgrade_1.3.1.php')
-rw-r--r-- | install/upgrade_1.3.1.php | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/install/upgrade_1.3.1.php b/install/upgrade_1.3.1.php index 436f25953..fa7708f6a 100644 --- a/install/upgrade_1.3.1.php +++ b/install/upgrade_1.3.1.php @@ -595,15 +595,8 @@ if (!is_writable($config_file)) die('FILE NOT WRITABLE '.$config_file); } -// Insert define('PHPWG_INSTALLED', true); in mysql.inc.php -$config_file_contents = - substr($config_file_contents, 0, $php_end_tag).' -define(\'PHPWG_INSTALLED\', true); -'.substr($config_file_contents, $php_end_tag); - -$fp = @fopen( $config_file, 'w' ); -@fputs($fp, $config_file_contents, strlen($config_file_contents)); -@fclose($fp); +// changes to write in mysql.inc.php +array_push($mysql_changes, 'define(\'PHPWG_INSTALLED\', true);'); // Send infos $page['infos'] = array_merge( |