|
From: OryNider <ory...@us...> - 2008-02-05 03:51:34
|
Update of /cvsroot/mxbb/mx_smartor/album_mod In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23734/album_mod Modified Files: album_bbconstants.php album_common.php album_constants.php album_functions.php album_integration.php Log Message: this was not upgraded yet? Index: album_functions.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_functions.php,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** album_functions.php 7 Jun 2007 20:13:11 -0000 1.7 --- album_functions.php 5 Feb 2008 03:51:29 -0000 1.8 *************** *** 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) Index: album_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_common.php,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** album_common.php 5 Oct 2007 11:09:43 -0000 1.20 --- album_common.php 5 Feb 2008 03:51:29 -0000 1.21 *************** *** 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 ---- |