|
From: Bart v. B. <ba...@us...> - 2002-02-15 15:08:56
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv31248 Modified Files: index.php viewforum.php Log Message: Made hidden groups really hidden (index, viewforum) Index: index.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/index.php,v retrieving revision 1.93 retrieving revision 1.94 diff -C2 -r1.93 -r1.94 *** index.php 28 Jan 2002 18:13:56 -0000 1.93 --- index.php 15 Feb 2002 15:08:48 -0000 1.94 *************** *** 210,213 **** --- 210,214 ---- WHERE aa.auth_mod = " . TRUE . " AND g.group_single_user = 1 + AND g.group_type <> " . GROUP_HIDDEN . " AND ug.group_id = aa.group_id AND g.group_id = aa.group_id *************** *** 230,233 **** --- 231,235 ---- WHERE aa.auth_mod = " . TRUE . " AND g.group_single_user = 0 + AND g.group_type != " . GROUP_HIDDEN . " AND ug.group_id = aa.group_id AND g.group_id = aa.group_id *************** *** 437,439 **** include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ! ?> \ No newline at end of file --- 439,441 ---- include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ! ?> Index: viewforum.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/viewforum.php,v retrieving revision 1.128 retrieving revision 1.129 diff -C2 -r1.128 -r1.129 *** viewforum.php 11 Feb 2002 02:18:33 -0000 1.128 --- viewforum.php 15 Feb 2002 15:08:48 -0000 1.129 *************** *** 191,194 **** --- 191,195 ---- AND aa.auth_mod = " . TRUE . " AND g.group_single_user = 1 + AND g.group_type <> ". GROUP_HIDDEN ." AND ug.group_id = aa.group_id AND g.group_id = aa.group_id *************** *** 212,215 **** --- 213,217 ---- AND aa.auth_mod = " . TRUE . " AND g.group_single_user = 0 + AND g.group_type <> ". GROUP_HIDDEN ." AND ug.group_id = aa.group_id AND g.group_id = aa.group_id *************** *** 670,672 **** include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ! ?> \ No newline at end of file --- 672,674 ---- include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ! ?> |