|
From: Paul S. O. <ps...@us...> - 2002-03-19 13:07:38
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv801
Modified Files:
modcp.php
Log Message:
Fix unecessary ( ) around GROUP BY clause for IP section
Index: modcp.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/modcp.php,v
retrieving revision 1.66
retrieving revision 1.67
diff -C2 -r1.66 -r1.67
*** modcp.php 19 Mar 2002 12:26:52 -0000 1.66
--- modcp.php 19 Mar 2002 13:07:35 -0000 1.67
***************
*** 31,35 ****
define('IN_PHPBB', true);
! $phpbb_root_path = "./";
include($phpbb_root_path . 'extension.inc');
include($phpbb_root_path . 'common.'.$phpEx);
--- 31,35 ----
define('IN_PHPBB', true);
! $phpbb_root_path = './';
include($phpbb_root_path . 'extension.inc');
[...1628 lines suppressed...]
! 'PAGINATION' => generate_pagination("modcp.$phpEx?" . POST_FORUM_URL . "=$forum_id", $forum_topics, $board_config['topics_per_page'], $start),
! 'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / $board_config['topics_per_page'] ) + 1 ), ceil( $forum_topics / $board_config['topics_per_page'] )),
! 'L_GOTO_PAGE' => $lang['Goto_page'])
);
! $template->pparse('body');
break;
***************
*** 1128,1130 ****
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
--- 1085,1087 ----
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
! ?>
\ No newline at end of file
|