Browse Source

another take on inclusion of errorhandler in CLI scripts

Andrew Dolgov 11 years ago
parent
commit
0186be6aeb
2 changed files with 6 additions and 0 deletions
  1. 4 0
      update.php
  2. 2 0
      update_daemon2.php

+ 4 - 0
update.php

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

+ 2 - 0
update_daemon2.php

@@ -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')) {