- Timestamp:
- Nov 3, 2006, 12:11:43 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 1 1 local 2 2 gal2 3 feed.xml
-
- Property svn:ignore
-
trunk/admin/group_list.php
r1583 r1591 42 42 // +-----------------------------------------------------------------------+ 43 43 44 if (isset($_GET['delete']) and is_numeric($_GET['delete']) )44 if (isset($_GET['delete']) and is_numeric($_GET['delete']) and !is_adviser()) 45 45 { 46 46 // destruction of the access linked to the group … … 85 85 // +-----------------------------------------------------------------------+ 86 86 87 if (isset($_POST['submit_add']) )87 if (isset($_POST['submit_add']) and !is_adviser()) 88 88 { 89 89 if (empty($_POST['groupname'])) … … 127 127 // +-----------------------------------------------------------------------+ 128 128 129 if (isset($_GET['toggle_is_default']) and is_numeric($_GET['toggle_is_default']) )129 if (isset($_GET['toggle_is_default']) and is_numeric($_GET['toggle_is_default']) and !is_adviser()) 130 130 { 131 131 $query = ' … … 158 158 $template->assign_vars( 159 159 array( 160 'F_ADD_ACTION' => PHPWG_ROOT_PATH.'admin.php?page=group_list' 160 'F_ADD_ACTION' => PHPWG_ROOT_PATH.'admin.php?page=group_list', 161 'U_HELP' => PHPWG_ROOT_PATH.'popuphelp.php?page=group_list', 161 162 ) 162 163 ); -
trunk/plugins
-
Property
svn:ignore
set to
text_integrator
-
Property
svn:ignore
set to
-
trunk/template/yoga/admin/group_list.tpl
r1583 r1591 1 1 <!-- $Id$ --> 2 <h2>{lang:title_groups}</h2> 2 <div class="titrePage"> 3 <ul class="categoryActions"> 4 <li><a href="{U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li> 5 </ul> 6 <h2>{lang:title_groups}</h2> 7 </div> 3 8 4 9 <form method="post" name="add_user" action="{F_ADD_ACTION}" class="properties">
Note: See TracChangeset
for help on using the changeset viewer.