diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-05-13 14:29:09 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-05-13 14:29:09 +0200 |
commit | 4f69bcfc38290db87c97645e311fda7a48e1468e (patch) | |
tree | 188cec0dcb5a4220bc6a234e394f8e1943d06730 /Zotlabs/Module/Settings | |
parent | 4135a1021163d8f7c1fe9226a81a603f24f4b65f (diff) | |
download | volse-hubzilla-4f69bcfc38290db87c97645e311fda7a48e1468e.tar.gz volse-hubzilla-4f69bcfc38290db87c97645e311fda7a48e1468e.tar.bz2 volse-hubzilla-4f69bcfc38290db87c97645e311fda7a48e1468e.zip |
streamline appearence of guest tokens individual perms with those in connedit
Diffstat (limited to 'Zotlabs/Module/Settings')
-rw-r--r-- | Zotlabs/Module/Settings/Tokens.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Settings/Tokens.php b/Zotlabs/Module/Settings/Tokens.php index bf22ec7aa..619c8b5ba 100644 --- a/Zotlabs/Module/Settings/Tokens.php +++ b/Zotlabs/Module/Settings/Tokens.php @@ -161,8 +161,8 @@ class Tokens { '$me' => t('My Settings'), '$perms' => $perms, '$inherited' => t('inherited'), - '$notself' => 0, - '$self' => 1, + '$notself' => 1, + '$self' => 0, '$permlbl' => t('Individual Permissions'), '$permnote' => t('Some permissions may be inherited from your channel\'s <a href="settings"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here.'), '$submit' => t('Submit') @@ -170,4 +170,4 @@ class Tokens { return $o; } -}
\ No newline at end of file +} |