|
From: Florin C B. <ory...@us...> - 2013-05-30 10:04:11
|
Update of /cvsroot/mxbb/mx_smartor In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27660 Modified Files: album.php Log Message: lang file typo Index: album.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album.php,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** album.php 18 Mar 2013 20:58:57 -0000 1.30 --- album.php 30 May 2013 10:04:08 -0000 1.31 *************** *** 35,40 **** $phpEx = substr(strrchr(__FILE__, '.'), 1); ! ! if (@file_exists( './viewtopic.' . $phpEx )) // -------------------------------------------- phpBB MOD MODE { define('MXBB_MODULE', false); --- 35,39 ---- $phpEx = substr(strrchr(__FILE__, '.'), 1); ! if (@file_exists('./viewtopic.' . $phpEx )) // -------------------------------------------- phpBB MOD MODE { define('MXBB_MODULE', false); *************** *** 163,167 **** else { ! if( !defined('IN_PORTAL') || !is_object($mx_block)) { define('IN_PORTAL', true); --- 162,166 ---- else { ! if(!defined('IN_PORTAL') || !is_object($mx_block)) { define('IN_PORTAL', true); *************** *** 226,238 **** global $images, $is_block; ! } } - // // Get general album information // $album_root_path = $module_root_path . 'album_mod/'; ! include($album_root_path . 'album_common.'.$phpEx); ! // // Nav switch for mx --- 225,235 ---- global $images, $is_block; ! } } // // Get general album information // $album_root_path = $module_root_path . 'album_mod/'; ! include($module_root_path . 'album_mod/' . 'album_common.'.$phpEx); // // Nav switch for mx *************** *** 458,467 **** } } ! ! $catrows = array (); $options = ($album_view_mode == ALBUM_VIEW_LIST ) ? ALBUM_READ_ALL_CATEGORIES|ALBUM_AUTH_VIEW : ALBUM_AUTH_VIEW; $catrows = album_read_tree($album_user_id, $options); ! album_read_tree($album_user_id); $album_nav_cat_desc = album_make_nav_tree($cat_id, this_smartor_mxurl("smartor_mode=album_cat"), "nav" , $album_user_id); --- 455,463 ---- } } ! $catrows = array (); $options = ($album_view_mode == ALBUM_VIEW_LIST ) ? ALBUM_READ_ALL_CATEGORIES|ALBUM_AUTH_VIEW : ALBUM_AUTH_VIEW; $catrows = album_read_tree($album_user_id, $options); ! album_read_tree($album_user_id); $album_nav_cat_desc = album_make_nav_tree($cat_id, this_smartor_mxurl("smartor_mode=album_cat"), "nav" , $album_user_id); *************** *** 723,727 **** } */ - album_display_index($album_user_id, ALBUM_ROOT_CATEGORY, true, true, true); --- 719,722 ---- |