|
From: Jon O. <jon...@us...> - 2006-06-29 13:13:51
|
Update of /cvsroot/mxbb/core/modules/mx_textblocks/admin In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv24423/modules/mx_textblocks/admin Modified Files: mx_module_defs.php Log Message: Removed unneeded nav_menu parameter Selvens nav_menu fix for get_nav() Selvens fix for finding bbcode faq info when posting Index: mx_module_defs.php =================================================================== RCS file: /cvsroot/mxbb/core/modules/mx_textblocks/admin/mx_module_defs.php,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** mx_module_defs.php 26 Jun 2006 21:32:23 -0000 1.19 --- mx_module_defs.php 29 Jun 2006 13:13:44 -0000 1.20 *************** *** 244,248 **** 'HTML_STATUS' => $html_status, ! 'BBCODE_STATUS' => $bbcode_status, 'SMILIES_STATUS' => $smilies_status, --- 244,248 ---- 'HTML_STATUS' => $html_status, ! 'BBCODE_STATUS' => sprintf($bbcode_status, '<a href="' . PHPBB_URL . append_sid("faq.$phpEx?mode=bbcode") . '" target="_phpbbcode">', '</a>'), 'SMILIES_STATUS' => $smilies_status, *************** *** 380,384 **** 'HTML_STATUS' => $html_status, ! 'BBCODE_STATUS' => $bbcode_status, 'SMILIES_STATUS' => $smilies_status, --- 380,384 ---- 'HTML_STATUS' => $html_status, ! 'BBCODE_STATUS' => sprintf($bbcode_status, '<a href="' . PHPBB_URL . append_sid("faq.$phpEx?mode=bbcode") . '" target="_phpbbcode">', '</a>'), 'SMILIES_STATUS' => $smilies_status, *************** *** 483,487 **** $template->assign_vars(array( 'HTML_STATUS' => $html_status, ! 'BBCODE_STATUS' => $bbcode_status, 'SMILIES_STATUS' => $smilies_status, 'L_PREVIEW' => $lang['Preview'], --- 483,487 ---- $template->assign_vars(array( 'HTML_STATUS' => $html_status, ! 'BBCODE_STATUS' => sprintf($bbcode_status, '<a href="' . PHPBB_URL . append_sid("faq.$phpEx?mode=bbcode") . '" target="_phpbbcode">', '</a>'), 'SMILIES_STATUS' => $smilies_status, 'L_PREVIEW' => $lang['Preview'], |