|
From: Jon O. <jon...@us...> - 2006-08-01 21:06:16
|
Update of /cvsroot/mxbb/core/modules/mx_coreblocks In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24654/modules/mx_coreblocks Modified Files: mx_language.php mx_theme.php Log Message: - A few generic classes added to the functions_tools file, for modules - cleaned up lang files Index: mx_language.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_language.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** mx_language.php 3 May 2006 09:17:29 -0000 1.15 --- mx_language.php 1 Aug 2006 21:06:13 -0000 1.16 *************** *** 71,75 **** 'L_CHANGE_NOW' => $lang['Change'], 'L_TITLE' => $lang['Portal_lang'], ! 'L_SUBTITLE' => $lang['SELECTGUILANG'] )); --- 71,75 ---- 'L_CHANGE_NOW' => $lang['Change'], 'L_TITLE' => $lang['Portal_lang'], ! 'L_SUBTITLE' => $lang['Select_lang'] )); Index: mx_theme.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_coreblocks/mx_theme.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** mx_theme.php 28 Apr 2006 14:29:37 -0000 1.15 --- mx_theme.php 1 Aug 2006 21:06:13 -0000 1.16 *************** *** 22,26 **** config_value = '$mx_default_style' WHERE config_name = 'default_style'"; ! if ( !$db->sql_query($sql) ) { --- 22,26 ---- config_value = '$mx_default_style' WHERE config_name = 'default_style'"; ! if ( !$db->sql_query($sql) ) { *************** *** 38,42 **** user_style = '$mx_user_style' WHERE user_id = '" . $userdata['user_id'] . "'"; ! if ( !$db->sql_query( $sql ) ) { --- 38,42 ---- user_style = '$mx_user_style' WHERE user_id = '" . $userdata['user_id'] . "'"; ! if ( !$db->sql_query( $sql ) ) { *************** *** 70,74 **** 'L_CHANGE_NOW' => $lang['Change'], 'L_TITLE' => $lang['Theme'], ! 'L_SUBTITLE' => $lang['SelectTheme'] )); --- 70,74 ---- 'L_CHANGE_NOW' => $lang['Change'], 'L_TITLE' => $lang['Theme'], ! 'L_SUBTITLE' => $lang['Select_theme'] )); *************** *** 80,84 **** $template->pparse('body_theme'); } ! else { $mx_block->show_title = false; --- 80,84 ---- $template->pparse('body_theme'); } ! else { $mx_block->show_title = false; |