|
From: Ulf E. <ulf...@us...> - 2005-08-22 19:58:37
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10527/templates/default/admin Modified Files: group-edit.html grouplist.html Log Message: Removed the hardcoded "assignable" bit from TBL_AUTH_GROUP and instead added a new entry in TBL_AUTH_PERM named "Assignable". Index: group-edit.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/group-edit.html,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- group-edit.html 20 Jul 2005 18:01:35 -0000 1.8 +++ group-edit.html 22 Aug 2005 19:58:26 -0000 1.9 @@ -1,6 +1,5 @@ <?php if (!isset($group_name)) $group_name = ''; - if (!isset($assignable)) $assignable = ''; if (!isset($group_id)) $group_id = ''; ?> <script type="text/javascript" language="JavaScript"> @@ -36,14 +35,6 @@ </tr> <tr> <td align="right" valign="top"> - Assignable: - </td> - <td> - <input type="checkbox" name="assignable" value="1" <?php if ($assignable > 0) echo 'checked'; ?>> - </td> - </tr> - <tr> - <td align="right" valign="top"> </td> <td> Index: grouplist.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/grouplist.html,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- grouplist.html 25 Oct 2004 12:07:03 -0000 1.8 +++ grouplist.html 22 Aug 2005 19:58:26 -0000 1.9 @@ -29,9 +29,6 @@ <a href="<?php echo $_SERVER['SCRIPT_NAME']; ?>?op=del&group_id=<?php echo $groups[$i]['group_id']; ?>" onClick="return confirm('<?php echo translate("This will remove all user assignments to this group and the group itself. Continue?"); ?>')"><?php echo translate("Delete"); ?></a> | <a href="<?php echo $_SERVER['SCRIPT_NAME']; ?>?op=purge&group_id=<?php echo $groups[$i]['group_id']; ?>" onClick="return confirm('<?php echo translate("This will remove all user assignments to this group. Continue?"); ?>')"><?php echo translate("Purge"); ?></a> <?php } ?> - <?php if($groups[$i]['assignable']) { ?> - | <?php echo translate("Assignable"); ?> - <?php } ?> </td> </tr> <?php } ?> |