Let's not avoid error reporting completely in getvaliddaemons

This commit is contained in:
Mikael Nordfeldth 2014-08-24 13:13:45 +02:00
parent ea53233f17
commit d1f5baa982
1 changed files with 2 additions and 2 deletions

View File

@ -33,8 +33,8 @@ by the startdaemons script
ENDOFHELP;
// No error reporting to avoid invalid daemon names
error_reporting(0);
// No unnecessary error reporting to avoid invalid daemon names
error_reporting(E_ALL & ~E_STRICT & ~E_NOTICE);
require_once INSTALLDIR.'/scripts/commandline.inc';