diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2014-07-16 18:30:27 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2015-07-19 21:26:47 +0200 |
commit | df56b2ed364e24f803047c9f64d168432ba2680c (patch) | |
tree | 1639bc2251c411bb68e0be3e33f67b74bf468fc7 /phpBB/phpbb/permissions.php | |
parent | 39f3313534f63c720da31b4deb726cb5d8a5d3ae (diff) | |
download | forums-df56b2ed364e24f803047c9f64d168432ba2680c.tar forums-df56b2ed364e24f803047c9f64d168432ba2680c.tar.gz forums-df56b2ed364e24f803047c9f64d168432ba2680c.tar.bz2 forums-df56b2ed364e24f803047c9f64d168432ba2680c.tar.xz forums-df56b2ed364e24f803047c9f64d168432ba2680c.zip |
[ticket/8708] Add f_announce_global permission
PHPBB3-8708
Diffstat (limited to 'phpBB/phpbb/permissions.php')
-rw-r--r-- | phpBB/phpbb/permissions.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/phpbb/permissions.php b/phpBB/phpbb/permissions.php index 82f59b5c20..c462f72a73 100644 --- a/phpBB/phpbb/permissions.php +++ b/phpBB/phpbb/permissions.php @@ -251,6 +251,7 @@ class permissions 'f_post' => array('lang' => 'ACL_F_POST', 'cat' => 'post'), 'f_sticky' => array('lang' => 'ACL_F_STICKY', 'cat' => 'post'), 'f_announce' => array('lang' => 'ACL_F_ANNOUNCE', 'cat' => 'post'), + 'f_announce_global' => array('lang' => 'ACL_F_ANNOUNCE_GLOBAL', 'cat' => 'post'), 'f_reply' => array('lang' => 'ACL_F_REPLY', 'cat' => 'post'), 'f_edit' => array('lang' => 'ACL_F_EDIT', 'cat' => 'post'), 'f_delete' => array('lang' => 'ACL_F_DELETE', 'cat' => 'post'), |