Skip to content

Commit

Permalink
Two fixes to Administrative Group permissions.
Browse files Browse the repository at this point in the history
(1) Groups weren't showing up because search wasn't flagged as coordinated.
Thanks to Zachary Matthews for the patch!

(2) New groups weren't being created because the access table wasn't flagged
for writing.
  • Loading branch information
jonjensen committed Oct 19, 2000
1 parent cc56952 commit ec21108
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion dist/lib/UI/pages/admin/group.html
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@

<td bgcolor="__UI_C_INTBLOCK__" width=450>
<select name="group_id" size=10>
[loop search="fi=access/st=db/sf=username/se=:/bs=yes/tf=name"]
[loop search="fi=access/st=db/co=yes/sf=username/se=:/bs=yes/tf=name"]
<option value="[loop-code]">[loop-data access name]
[/loop]
</select>
Expand Down
4 changes: 4 additions & 0 deletions dist/lib/UI/pages/admin/group_edit.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
[set page_perm]group=v[/set]
[set help_name]group.main[/set]
[set icon_name]admin/icon_config.gif[/set]
[calc]
$CGI->{mv_data_table} = $Values->{mv_data_table} = '__UI_ACCESS_TABLE__';
return;
[/calc]

@_UI_STD_HEAD_@
[if scratch ui_message]
Expand Down

0 comments on commit ec21108

Please sign in to comment.