1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-23 17:42:15 -05:00

notice with poche_version undefined'

This commit is contained in:
Nicolas Lœuillet 2013-08-23 21:30:55 +02:00
parent 8be8c44596
commit b64a882696

View File

@ -239,24 +239,19 @@ class Tools
{ {
$myconfig_file = './inc/poche/myconfig.inc.php'; $myconfig_file = './inc/poche/myconfig.inc.php';
if (version_compare(POCHE_VERSION, '1.0-beta3') == 1) { if (!is_writable('./inc/poche/')) {
# $myconfig_file is only created with poche > 1.0-beta3 self::logm('you don\'t have write access to create ./inc/poche/myconfig.inc.php');
# in 1.0-beta3, the update script creates $myconfig_file die('You don\'t have write access to create ./inc/poche/myconfig.inc.php.');
}
if (!is_writable('./inc/poche/')) { if (!file_exists($myconfig_file))
self::logm('you don\'t have write access to create ./inc/poche/myconfig.inc.php'); {
die('You don\'t have write access to create ./inc/poche/myconfig.inc.php.'); $fp = fopen($myconfig_file, 'w');
} fwrite($fp, '<?php'."\r\n");
fwrite($fp, "define ('POCHE_VERSION', '1.0-beta3');" . "\r\n");
if (!file_exists($myconfig_file)) fwrite($fp, "define ('SALT', '" . md5(time() . $_SERVER['SCRIPT_FILENAME'] . rand()) . "');" . "\r\n");
{ fwrite($fp, "define ('LANG', 'en_EN.utf8');" . "\r\n");
$fp = fopen($myconfig_file, 'w'); fclose($fp);
fwrite($fp, '<?php'."\r\n");
fwrite($fp, "define ('POCHE_VERSION', '1.0-beta3');" . "\r\n");
fwrite($fp, "define ('SALT', '" . md5(time() . $_SERVER['SCRIPT_FILENAME'] . rand()) . "');" . "\r\n");
fwrite($fp, "define ('LANG', 'en_EN.utf8');" . "\r\n");
fclose($fp);
}
} }
} }
} }