|
From: Doug K. <dou...@us...> - 2002-03-19 15:39:11
|
Update of /cvsroot/phpbb/phpBB2/admin
In directory usw-pr-cvs1:/tmp/cvs-serv9129/admin
Modified Files:
admin_groups.php
Log Message:
Here we have the pleasure of fixing bugs 526891 and 530830. Both have been tested on my local copy, and they should be ready!
Index: admin_groups.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/admin/admin_groups.php,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -r1.23 -r1.24
*** admin_groups.php 18 Mar 2002 14:54:25 -0000 1.23
--- admin_groups.php 19 Mar 2002 15:39:06 -0000 1.24
***************
*** 344,347 ****
--- 344,355 ----
);
+ //
+ // Faking the IF... ELSE statements again...
+ //
+ if( count($group_list) > 0 )
+ {
+ $template->assign_block_vars("select_box", array());
+ }
+
$template->pparse('body');
}
***************
*** 349,351 ****
include('page_footer_admin.'.$phpEx);
! ?>
\ No newline at end of file
--- 357,359 ----
include('page_footer_admin.'.$phpEx);
! ?>
|