Partial (inventory related) include files cleanup.
[fa-stable.git] / includes / errors.inc
index 7c911fcef1d9d755185d0bde0e94f1c66bcf3dad..1bf3b3bdeb37235af8f69a5ba7f1719b28cbbffd 100644 (file)
@@ -61,9 +61,9 @@ function error_handler($errno, $errstr, $file, $line) {
        // skip well known warnings we don't care about.
        // Please use restrainedly to not risk loss of important messages
        $excluded_warnings = array(
-               'html_entity_decode', 'htmlspecialchars',       // nevermind encodings, special chars are processed anyway
-               'should be compatible with that',                       // ignore cpdf/frontreport wrapper warnings
-               'mysql extension is deprecated'                         // ignore strict warning in 5.4
+               'html_entity_decode',                           // nevermind encodings, special chars are processed anyway
+               'should be compatible with that',       // ignore cpdf/frontreport wrapper warnings
+               'mysql extension is deprecated'         // ignore strict warning in 5.4
        );
        foreach($excluded_warnings as $ref) {
                if (strpos($errstr, $ref) !== false) {