another take on inclusion of errorhandler in CLI scripts

This commit is contained in:
Andrew Dolgov 2013-04-17 12:36:27 +04:00
parent d1bfb86f9d
commit 0186be6aeb
2 changed files with 6 additions and 0 deletions

View File

@ -88,6 +88,10 @@
return;
}
if (!isset($options['daemon'])) {
require_once "errorhandler.php";
}
if (!isset($options['update-schema'])) {
$schema_version = get_schema_version($link);

View File

@ -256,6 +256,8 @@
if (!init_connection($link)) return;
require_once "errorhandler.php";
// We disable stamp file, since it is of no use in a multiprocess update.
// not really, tho for the time being -fox
if (!make_stampfile('update_daemon.stamp')) {