[dw-free] Groups-security in manage/tags displayed as access-locked
[commit: http://hg.dwscoalition.org/dw-free/rev/a9b33992637f]
http://bugs.dwscoalition.org/show_bug.cgi?id=1244
Tweak group-filtered display.
Patch by
afuna.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=1244
Tweak group-filtered display.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- htdocs/js/tags.js
-------------------------------------------------------------------------------- diff -r 635815519516 -r a9b33992637f htdocs/js/tags.js --- a/htdocs/js/tags.js Sun May 31 23:58:18 2009 +0000 +++ b/htdocs/js/tags.js Mon Jun 01 00:35:31 2009 +0000 @@ -133,9 +133,9 @@ function show_props(div, id) secimg = secimg + "silk/entry/locked.png"; seclabel = ml.trusted_label; } - else { - secimg = secimg + "silk/entry/locked.png"; - seclabel = tag[1]; + else if (tag[1] == "group") { + secimg = secimg + "silk/entry/filtered.png"; + seclabel = ml.filters_label; } secimg = secimg + '" />'; if (tag[1] == "n/a") secimg = ""; --------------------------------------------------------------------------------