diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-12-25 14:25:58 -0800 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-12-25 14:25:58 -0800 |
commit | a085f4df7f27485be3877940f0009436fd8c19f1 (patch) | |
tree | d32463ec7ff3dcc6af8d7e5527aadd99b7a6545c | |
parent | d39cd088a1dcea5dc9c34cc1fb000f7b6ee1676b (diff) | |
download | volse-hubzilla-a085f4df7f27485be3877940f0009436fd8c19f1.tar.gz volse-hubzilla-a085f4df7f27485be3877940f0009436fd8c19f1.tar.bz2 volse-hubzilla-a085f4df7f27485be3877940f0009436fd8c19f1.zip |
regression: default inherited permission was not being set for a connection if the permission was 'inherited'. We need to set these so that if somebody changes the top level permissions they don't have to go back and manually edit every connection to allow/deny what used to be an automatic inherited setting.
-rw-r--r-- | util/hmessages.po | 8 | ||||
-rw-r--r-- | version.inc | 2 | ||||
-rwxr-xr-x | view/tpl/field_acheckbox.tpl | 1 |
3 files changed, 4 insertions, 7 deletions
diff --git a/util/hmessages.po b/util/hmessages.po index 9025a5b69..643128c8e 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2015-12-18.1250\n" +"Project-Id-Version: 2015-12-25.1257\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-12-18 00:03-0800\n" +"POT-Creation-Date: 2015-12-25 00:03-0800\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -9172,10 +9172,6 @@ msgstr "" msgid "Link text" msgstr "" -#: ../../mod/wholikesme.php:13 -msgid "Who likes me?" -msgstr "" - #: ../../mod/sharedwithme.php:94 msgid "Files: shared with me" msgstr "" diff --git a/version.inc b/version.inc index 6ae9d3269..b014fb04f 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2015-12-24.1256 +2015-12-25.1257 diff --git a/view/tpl/field_acheckbox.tpl b/view/tpl/field_acheckbox.tpl index e99128bbb..d85c234f1 100755 --- a/view/tpl/field_acheckbox.tpl +++ b/view/tpl/field_acheckbox.tpl @@ -13,6 +13,7 @@ <input type="checkbox" name='{{$field.0}}' class='abook-edit-me' id='me_id_{{$field.0}}' value="{{$field.4}}" {{if $field.3}}checked="checked"{{/if}} /> {{/if}} {{if $notself && $field.5}} + <input type="hidden" name='{{$field.0}}' value="{{if $field.7}}1{{else}}0{{/if}}" /> {{if $field.3}}<i class="icon-check"></i>{{else}}<i class="icon-check-empty"></i>{{/if}} {{/if}} </td> |