|
From: Jon O. <jon...@us...> - 2006-09-12 21:40:16
|
Update of /cvsroot/mxbb/core/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv17644/includes Modified Files: mx_functions.php Log Message: version numbers etc Index: mx_functions.php =================================================================== RCS file: /cvsroot/mxbb/core/includes/mx_functions.php,v retrieving revision 1.68 retrieving revision 1.69 diff -C2 -d -r1.68 -r1.69 *** mx_functions.php 17 Jun 2006 20:09:06 -0000 1.68 --- mx_functions.php 12 Sep 2006 20:27:31 -0000 1.69 *************** *** 893,897 **** $mx_page->page_title = $lang['mx_about_title']; ! $sql = "SELECT * FROM " . MODULE_TABLE . " ORDER BY module_id"; if( !($result = $db->sql_query($sql)) ) { --- 893,897 ---- $mx_page->page_title = $lang['mx_about_title']; ! $sql = "SELECT * FROM " . MODULE_TABLE . " ORDER BY module_name"; if( !($result = $db->sql_query($sql)) ) { *************** *** 908,912 **** if( !empty($module[$i]['module_copy']) ) { ! $mx_module_copy .= '<br />' . '<h3>' . $module[$i]['module_name'] . (!empty($module[$i]['module_version']) ? ' v. ' . $module[$i]['module_version'] : ''). '</h3>' . $module[$i]['module_desc'] . '<br />' . $module[$i]['module_copy']; } } --- 908,912 ---- if( !empty($module[$i]['module_copy']) ) { ! $mx_module_copy .= '<br />' . '<h3>' . $module[$i]['module_name'] . '</h3>' . $module[$i]['module_desc'] . (!empty($module[$i]['module_version']) ? ($module[$i]['module_version'] != 'mxBB Core Module' ? ' v. ' : ' - ' ) . $module[$i]['module_version'] : '') . '<br />' . $module[$i]['module_copy']; } } |