diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-17 20:52:02 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-17 23:39:53 -0700 |
commit | a7fd4e96f1960f486980393ec99e94ef629af855 (patch) | |
tree | 4c3fa126da0d2afcebf700f730523a59de8fac35 /view/tpl/acl_selector.tpl | |
parent | a9cae7c9bd8504f307df3ba559edfafc7d086247 (diff) | |
download | volse-hubzilla-a7fd4e96f1960f486980393ec99e94ef629af855.tar.gz volse-hubzilla-a7fd4e96f1960f486980393ec99e94ef629af855.tar.bz2 volse-hubzilla-a7fd4e96f1960f486980393ec99e94ef629af855.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}} |