Archived
1
0

I guess I will never understand bitmasks.

This now seems to work in both PHP 5.2 and PHP 5.4, and I might even udnerstand why ;)
This commit is contained in:
Garvin Hicking
2013-01-20 11:04:14 +01:00
parent 6f2858ad27
commit f704375a2c

View File

@@ -254,7 +254,7 @@ if (!is_readable($local_config)) {
include($local_config);
if ($serendipity['production'] === 'debug') {
error_reporting((E_ALL ^ E_STRICT) & ~E_NOTICE); // Read: Show E_ALL, E_STRICT but NOT E_NOTICE.
error_reporting(E_ALL &~E_NOTICE | E_STRICT);
}
//[internal callback function]: errorToExceptionHandler()