|
From: FlorinCB <ory...@us...> - 2008-10-04 21:18:17
|
Update of /cvsroot/mxbb/mx_smartor In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv31876 Modified Files: album_lists.php db_install.php db_upgrade.php Log Message: upgrade finaly Index: album_lists.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/album_lists.php,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** album_lists.php 25 Sep 2008 11:46:11 -0000 1.29 --- album_lists.php 4 Oct 2008 21:13:54 -0000 1.30 *************** *** 82,86 **** // Get Album Config // ! if (($mx_cache->get('album_cat_list')) && ($use_cache)) { $catrows_cache = $mx_cache->get('album_cat_list'); --- 82,86 ---- // Get Album Config // ! if ($mx_cache->get('album_cat_list') && $use_cache) { $catrows_cache = $mx_cache->get('album_cat_list'); *************** *** 136,140 **** if ($allowed_cat != '') { ! if (($mx_cache->get('album_recent_list')) && ($use_cache)) { $recentrow = $mx_cache->get('album_recent_list'); --- 136,140 ---- if ($allowed_cat != '') { ! if ($mx_cache->get('album_recent_list') && $use_cache) { $recentrow = $mx_cache->get('album_recent_list'); *************** *** 248,252 **** if ($allowed_cat != '') { ! if (($mx_cache->get('album_most_list')) && ($use_cache)) { $mostrow= $mx_cache->get('album_most_list'); --- 248,252 ---- if ($allowed_cat != '') { ! if ($mx_cache->get('album_most_list') && $use_cache) { $mostrow= $mx_cache->get('album_most_list'); *************** *** 363,367 **** if ($allowed_cat != '') { ! if (($mx_cache->get('album_highest_list')) && ($use_cache)) { $highestrow = $mx_cache->get('album_highest_list'); --- 363,367 ---- if ($allowed_cat != '') { ! if ($mx_cache->get('album_highest_list') && $use_cache) { $highestrow = $mx_cache->get('album_highest_list'); *************** *** 475,479 **** if ($allowed_cat != '') { ! if (($mx_cache->get('album_rand_list')) && ($use_cache)) { $randrow = $mx_cache->get('album_rand_list'); --- 475,479 ---- if ($allowed_cat != '') { ! if ($mx_cache->get('album_rand_list') && $use_cache) { $randrow = $mx_cache->get('album_rand_list'); Index: db_install.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/db_install.php,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** db_install.php 25 Sep 2008 11:46:12 -0000 1.27 --- db_install.php 4 Oct 2008 21:13:54 -0000 1.28 *************** *** 52,56 **** } ! $mx_module_version = '2.9.4'; $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; --- 52,56 ---- } ! $mx_module_version = '2.9.5'; $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; Index: db_upgrade.php =================================================================== RCS file: /cvsroot/mxbb/mx_smartor/db_upgrade.php,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** db_upgrade.php 25 Sep 2008 11:46:13 -0000 1.24 --- db_upgrade.php 4 Oct 2008 21:13:54 -0000 1.25 *************** *** 30,34 **** } ! $mx_module_version = '2.9.4'; $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; --- 30,34 ---- } ! $mx_module_version = '2.9.5'; $mx_module_copy = 'Mx-Publisher <i> - smartor album FAP </i> module by Mighty Gorgon & <a href="http://www.mxbb.net" target="_blank">The Mx-Publisher Development Team</a>'; |