aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2006-03-28 13:47:16 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2006-03-28 13:47:16 +0000
commitb6b43a7580addfe162431c8498b8815ad17a3021 (patch)
tree9d7285c6ac64d5f73bfb1a6d6e2fc7b286c0208b /phpBB/includes/functions_user.php
parentf52ef0a6ec3e095f04f36115f07964150aee398e (diff)
downloadforums-b6b43a7580addfe162431c8498b8815ad17a3021.tar
forums-b6b43a7580addfe162431c8498b8815ad17a3021.tar.gz
forums-b6b43a7580addfe162431c8498b8815ad17a3021.tar.bz2
forums-b6b43a7580addfe162431c8498b8815ad17a3021.tar.xz
forums-b6b43a7580addfe162431c8498b8815ad17a3021.zip
add group_legend to group management
git-svn-id: file:///svn/phpbb/trunk@5740 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index 4cb8a7b863..c34f16c1e0 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1156,11 +1156,12 @@ function group_create(&$group_id, $type, $name, $desc, $group_attributes, $allow
'group_avatar_height' => 'int',
'group_receive_pm' => 'int',
+ 'group_legend' => 'int',
'group_message_limit' => 'int',
);
// Those are group-only attributes
- $group_only_ary = array('group_receive_pm', 'group_message_limit');
+ $group_only_ary = array('group_receive_pm', 'group_legend', 'group_message_limit');
// Check data
if (!strlen($name) || strlen($name) > 40)