aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_user.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-07-17 03:23:31 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-07-17 03:23:31 +0000
commitfa205b922dcfa09bab26b6cf9d406d2afe1a0518 (patch)
treeb442ec1e2e368bdf2476028e7b4de82ad83e5a97 /phpBB/includes/functions_user.php
parent29d92430c5e364d63a5ec7db96d306cdf1c02e72 (diff)
downloadforums-fa205b922dcfa09bab26b6cf9d406d2afe1a0518.tar
forums-fa205b922dcfa09bab26b6cf9d406d2afe1a0518.tar.gz
forums-fa205b922dcfa09bab26b6cf9d406d2afe1a0518.tar.bz2
forums-fa205b922dcfa09bab26b6cf9d406d2afe1a0518.tar.xz
forums-fa205b922dcfa09bab26b6cf9d406d2afe1a0518.zip
hmm... This commit does not increase the number of BBCodes. However, this does other things that we need to do first. This splits the usage of allow_* from the BBCode bitfield in forum descriptions, forum rules and group descriptions. This also fixes a tiny, tiny severe issue that nobody found :D I hope it works :P
git-svn-id: file:///svn/phpbb/trunk@6188 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_user.php')
-rw-r--r--phpBB/includes/functions_user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_user.php b/phpBB/includes/functions_user.php
index 14ff15c1b2..ead2834a5f 100644
--- a/phpBB/includes/functions_user.php
+++ b/phpBB/includes/functions_user.php
@@ -1389,7 +1389,7 @@ function group_create(&$group_id, $type, $name, $desc, $group_attributes, $allow
// Parse description
if ($desc)
{
- generate_text_for_storage($sql_ary['group_desc'], $sql_ary['group_desc_uid'], $sql_ary['group_desc_bitfield'], $allow_desc_bbcode, $allow_desc_urls, $allow_desc_smilies);
+ generate_text_for_storage($sql_ary['group_desc'], $sql_ary['group_desc_uid'], $sql_ary['group_desc_bitfield'], $sql_ary['group_desc_options'], $allow_desc_bbcode, $allow_desc_urls, $allow_desc_smilies);
}
if (sizeof($group_attributes))