diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-10-04 22:21:20 +0200 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-10-04 22:21:20 +0200 |
commit | 1eaf6df842184743ee20ec69931be1ff7136f34e (patch) | |
tree | 9ecea2ceeeeb361ba7c445b76ff9322623af7185 /Zotlabs/Module/Permcats.php | |
parent | 9fe9137c9689347e2be1d6bf6633956e147e368c (diff) | |
download | volse-hubzilla-1eaf6df842184743ee20ec69931be1ff7136f34e.tar.gz volse-hubzilla-1eaf6df842184743ee20ec69931be1ff7136f34e.tar.bz2 volse-hubzilla-1eaf6df842184743ee20ec69931be1ff7136f34e.zip |
fix issues with bs accordions
Diffstat (limited to 'Zotlabs/Module/Permcats.php')
-rw-r--r-- | Zotlabs/Module/Permcats.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Permcats.php b/Zotlabs/Module/Permcats.php index 262a14fe4..75ac2ac87 100644 --- a/Zotlabs/Module/Permcats.php +++ b/Zotlabs/Module/Permcats.php @@ -25,7 +25,7 @@ class Permcats extends Controller { $name = escape_tags(trim($_POST['name'])); if(! $name) { - notice( t('Permission Name is required.') . EOL); + notice( t('Permission category name is required.') . EOL); return; } @@ -117,7 +117,7 @@ class Permcats extends Controller { '$atoken' => $atoken, '$url1' => z_root() . '/channel/' . $channel['channel_address'], '$url2' => z_root() . '/photos/' . $channel['channel_address'], - '$name' => array('name', t('Permission Name') . ' <span class="required">*</span>', (($name) ? $name : ''), ''), + '$name' => array('name', t('Permission category name') . ' <span class="required">*</span>', (($name) ? $name : ''), ''), '$me' => t('My Settings'), '$perms' => $perms, '$inherited' => t('inherited'), |