|
From: OryNider <ory...@us...> - 2007-10-05 11:09:50
|
Update of /cvsroot/mxbb/mx_smartor/album_mod In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv10367/album_mod Modified Files: album_bbconstants.php album_common.php album_constants.php Log Message: spaces removed after ?> Index: album_bbconstants.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_bbconstants.php,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** album_bbconstants.php 27 Sep 2007 00:31:45 -0000 1.4 --- album_bbconstants.php 5 Oct 2007 11:09:43 -0000 1.5 *************** *** 61,63 **** define('ALBUM_THUMBNAIL', this_smartor_mxurl('smartor_mode=album_thumbnail', true)); ! ?> --- 61,63 ---- define('ALBUM_THUMBNAIL', this_smartor_mxurl('smartor_mode=album_thumbnail', true)); ! ?> \ No newline at end of file Index: album_constants.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_constants.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** album_constants.php 7 Jun 2007 20:13:11 -0000 1.10 --- album_constants.php 5 Oct 2007 11:09:43 -0000 1.11 *************** *** 102,109 **** define('ALBUM_PRIVATE', 3); ! if( !defined('PAGE_ALBUM') ) ! { ! define('PAGE_ALBUM', -502); ! } // Path (trailing slash required) --- 102,115 ---- define('ALBUM_PRIVATE', 3); ! !defined('PAGE_ALBUM') ? define('PAGE_ALBUM', -502) : false; ! ! //Redefine some GD constants ! !defined('IMAGETYPE_PNG') ? define('IMAGETYPE_PNG', 3) : false; ! !defined('IMAGETYPE_JPEG') ? define('IMAGETYPE_JPEG', 2) : false; ! !defined('IMAGETYPE_GIF') ? define('IMAGETYPE_GIF', 1) : false; ! ! !defined('IMG_PNG') ? define('IMG_PNG', IMAGETYPE_PNG) : false; ! !defined('IMG_JPG') ? define('IMG_JPG', IMAGETYPE_JPEG) : false; ! !defined('IMG_GIF') ? define('IMG_GIF', IMAGETYPE_GIF) : false; // Path (trailing slash required) Index: album_common.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_mod/album_common.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** album_common.php 9 Aug 2007 13:16:53 -0000 1.19 --- album_common.php 5 Oct 2007 11:09:43 -0000 1.20 *************** *** 199,203 **** 'U_INDEX' => append_sid($mx_root_path . "index.".$phpEx), 'L_USERNAME' => $lang['Username'], ! 'L_DESCRIPTION' => $lang['Description'], 'L_PIC_NAME' => $lang['Pic_Name'], 'L_NO_PICS' => $lang['No_Pics'], --- 199,203 ---- 'U_INDEX' => append_sid($mx_root_path . "index.".$phpEx), 'L_USERNAME' => $lang['Username'], ! 'L_DESCRIPTION' => $lang['Description'], 'L_PIC_NAME' => $lang['Pic_Name'], 'L_NO_PICS' => $lang['No_Pics'], *************** *** 230,232 **** include_once($album_root_path . 'album_hierarchy_functions.' . $phpEx); ! ?> --- 230,232 ---- include_once($album_root_path . 'album_hierarchy_functions.' . $phpEx); ! ?> \ No newline at end of file |