diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-17 20:52:02 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-17 20:52:02 -0700 |
commit | f31ef3420db5ed600a988dc300f2d2f56b31acc6 (patch) | |
tree | 311833670e6798d16a425f8551b1d0f2b6f9f03b /view/tpl/acl_selector.tpl | |
parent | b37184ae5758e1a93efb0c2334edae848dbb148a (diff) | |
download | volse-hubzilla-f31ef3420db5ed600a988dc300f2d2f56b31acc6.tar.gz volse-hubzilla-f31ef3420db5ed600a988dc300f2d2f56b31acc6.tar.bz2 volse-hubzilla-f31ef3420db5ed600a988dc300f2d2f56b31acc6.zip |
issue #549, ACL has 'public' selected even when restrictive ACL is being used.
Diffstat (limited to 'view/tpl/acl_selector.tpl')
-rwxr-xr-x | view/tpl/acl_selector.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/tpl/acl_selector.tpl b/view/tpl/acl_selector.tpl index dbdbd6a56..c23840c16 100755 --- a/view/tpl/acl_selector.tpl +++ b/view/tpl/acl_selector.tpl @@ -15,10 +15,10 @@ {{/if}} <label for="acl-select">{{$select_label}}</label> <select id="acl-select" name="optionsRadios" class="form-control form-group"> - <option id="acl-showall" value="public" selected>{{$showall}}</option> + <option id="acl-showall" value="public" {{$public_selected}}>{{$showall}}</option> {{$groups}} - <option id="acl-onlyme" value="onlyme">{{$onlyme}}</option> - <option id="acl-custom" value="custom">{{$custom}}</option> + <option id="acl-onlyme" value="onlyme" {{$justme_selected}}>{{$onlyme}}</option> + <option id="acl-custom" value="custom" {{$custom_selected}}>{{$custom}}</option> </select> {{if $showallOrigin}} |