|
From: Jon O. <jon...@us...> - 2006-12-16 18:07:28
|
Update of /cvsroot/mxbb/mx_phpbb/includes In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv1137/modules/mx_phpbb/includes Modified Files: forum_hack.php Log Message: - online info (pages) in the adminCP - new pm popup - the phpbb login box Index: forum_hack.php =================================================================== RCS file: /cvsroot/mxbb/mx_phpbb/includes/forum_hack.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** forum_hack.php 10 Dec 2006 20:40:35 -0000 1.18 --- forum_hack.php 16 Dec 2006 18:07:24 -0000 1.19 *************** *** 14,18 **** } ! if ($_GET['mode'] == 'topicreview' || $_GET['mode'] == 'smilies') { return; --- 14,18 ---- } ! if ($_GET['mode'] == 'topicreview' || $_GET['mode'] == 'smilies' || $_GET['mode'] == 'newpm') { return; *************** *** 634,638 **** 'U_SEARCH_UNANSWERED' => $this->append_sid( 'search.' . $phpEx . '?search_id=unanswered' ), 'U_SEARCH_SELF' => $this->append_sid( 'search.' . $phpEx . '?search_id=egosearch' ), ! 'U_SEARCH_NEW' => $this->append_sid( 'search.' . $phpEx . '?search_id=newposts' ) ); // --- 634,640 ---- 'U_SEARCH_UNANSWERED' => $this->append_sid( 'search.' . $phpEx . '?search_id=unanswered' ), 'U_SEARCH_SELF' => $this->append_sid( 'search.' . $phpEx . '?search_id=egosearch' ), ! 'U_SEARCH_NEW' => $this->append_sid( 'search.' . $phpEx . '?search_id=newposts' ), ! 'L_LOGIN_LOGOUT' => $lang['Login'], ! 'S_LOGIN_ACTION' => append_sid('login.'.$phpEx) ); // *************** *** 643,653 **** break; case 'search': ! $script_vars = array( 'L_SEARCH' => $lang['Search'] ! ); break; case 'viewforum': global $online_userlist; // declared here: includes/page_header.php ! $script_vars = array( 'LOGGED_IN_USER_LIST' => $online_userlist ! ); break; default: --- 645,653 ---- break; case 'search': ! $script_vars = array( 'L_SEARCH' => $lang['Search'] ); break; case 'viewforum': global $online_userlist; // declared here: includes/page_header.php ! $script_vars = array( 'LOGGED_IN_USER_LIST' => $online_userlist ); break; default: |