Supporting PHP7.0 on "mysqli" DB driver.
[scuttle] / header.inc.php
index d3c6ed898927f26e7cc5d5e6d4e7f57c13a94daa..9c23c12ddfa6c80b51b65415df1ed4aadb10b1f7 100644 (file)
@@ -37,4 +37,6 @@ else {
   ini_set('display_errors',   '0');
   ini_set('mysql.trace_mode', '0');
   error_reporting(E_ALL);
+  //PHP5.4 PHP Notice:  Undefined variable:  PHP7 STOP deprecated and Warning
+  error_reporting(E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED & ~E_USER_WARNING);
 }
\ No newline at end of file

Benjamin Mako Hill || Want to submit a patch?