teckinno (@teckinno)

Forum Replies Created

Viewing 1 replies (of 1 total)
  • In reply to: Deprecated???

    This is the proper fix for PHP 5.3

    In bb-load.php, replace:

    error_reporting( E_ALL ^ E_NOTICE );

    With:

    if (!defined(‘E_DEPRECATED’))

    {

    define(‘E_DEPRECATED’, 8192);

    }

    error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);

Viewing 1 replies (of 1 total)