|
From: Florin C B. <ory...@us...> - 2013-03-18 20:59:00
|
Update of /cvsroot/mxbb/mx_smartor In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv16285 Modified Files: album.php Log Message: database schema upgrade for mx_smartor 3.0 and FAP 1.5.0 plus some files Index: album.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** album.php 18 Mar 2013 05:51:46 -0000 1.29 --- album.php 18 Mar 2013 20:58:57 -0000 1.30 *************** *** 321,325 **** else if ( $mode == 'album_picm' ) { ! error_reporting(E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables include($album_root_path. 'modules/album_picm.'.$phpEx); } --- 321,326 ---- else if ( $mode == 'album_picm' ) { ! error_reporting(E_ALL & ~E_NOTICE); //Default error reporting in PHP 5.2+ ! //error_reporting(E_ERROR | E_WARNING | E_PARSE); // This will NOT report uninitialized variables include($album_root_path. 'modules/album_picm.'.$phpEx); } *************** *** 637,641 **** +----------------------- */ - $page_title = $lang['Album']; --- 638,641 ---- |