Update of /cvsroot/mxbb/mx_smartor/album_mod In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv2056/album_mod Modified Files: Tag: core28x album_bbconstants.php album_common.php album_constants.php album_functions.php album_integration.php Log Message: Index: album_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_common.php,v retrieving revision 1.19.2.3 retrieving revision 1.19.2.4 diff -C2 -d -r1.19.2.3 -r1.19.2.4 *** album_common.php 1 Feb 2008 14:12:27 -0000 1.19.2.3 --- album_common.php 5 Feb 2008 04:16:33 -0000 1.19.2.4 *************** *** 150,154 **** include_once($album_root_path . 'album_integration.' . $phpEx); ! // // Set ALBUM Version --- 150,155 ---- include_once($album_root_path . 'album_integration.' . $phpEx); ! include_once($album_root_path . 'album_functions.' . $phpEx); ! include_once($album_root_path . 'clown_album_functions.' . $phpEx); // // Set ALBUM Version *************** *** 220,226 **** ); - include_once($album_root_path . 'album_functions.' . $phpEx); - include_once($album_root_path . 'clown_album_functions.' . $phpEx); - if ($album_config['album_bbcode'] == 1) { --- 221,224 ---- Index: album_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_functions.php,v retrieving revision 1.7 retrieving revision 1.7.2.1 diff -C2 -d -r1.7 -r1.7.2.1 *** album_functions.php 7 Jun 2007 20:13:11 -0000 1.7 --- album_functions.php 5 Feb 2008 04:16:33 -0000 1.7.2.1 *************** *** 21,25 **** if ( !defined('IS_PHPBBXS') ) { ! if(!function_exists(create_date2)) { function create_date2($format, $gmepoch, $tz) --- 21,37 ---- if ( !defined('IS_PHPBBXS') ) { ! if(!function_exists(create_date)) ! { ! function create_date($format, $gmepoch, $tz) ! { ! return phpBB2::create_date($format, $gmepoch, $tz); ! } ! ! function create_date2($format, $gmepoch, $tz) ! { ! return phpBB2::create_date($format, $gmepoch, $tz); ! } ! } ! else if(!function_exists(create_date2)) { function create_date2($format, $gmepoch, $tz) |