aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_posting.php
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2003-03-10 19:39:50 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2003-03-10 19:39:50 +0000
commitfa005f44ae19001db4f5c1a00c2d5d2c826ba812 (patch)
treea76adea6111f3c2cb3da20940cd02f7530e91b99 /phpBB/includes/functions_posting.php
parent4c4278ac8d5176d957c00edafb550d458b742ce7 (diff)
downloadforums-fa005f44ae19001db4f5c1a00c2d5d2c826ba812.tar
forums-fa005f44ae19001db4f5c1a00c2d5d2c826ba812.tar.gz
forums-fa005f44ae19001db4f5c1a00c2d5d2c826ba812.tar.bz2
forums-fa005f44ae19001db4f5c1a00c2d5d2c826ba812.tar.xz
forums-fa005f44ae19001db4f5c1a00c2d5d2c826ba812.zip
some posting updates and fixes.
git-svn-id: file:///svn/phpbb/trunk@3631 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_posting.php')
-rw-r--r--phpBB/includes/functions_posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php
index 8e4acd8d13..fc9035bc6a 100644
--- a/phpBB/includes/functions_posting.php
+++ b/phpBB/includes/functions_posting.php
@@ -167,7 +167,7 @@ function decode_text(&$message)
}
// Quote Text
-function quote_text($message, $username = '')
+function quote_text(&$message, $username = '')
{
$message = ' [quote' . ( (empty($username)) ? ']' : '="' . addslashes(trim($username)) . '"]') . trim($message) . '[/quote] ';
}