From b05dc90109390d403ef4dc220dbe6cc725505c74 Mon Sep 17 00:00:00 2001 From: the_systech Date: Wed, 9 Jan 2002 01:39:23 +0000 Subject: [PATCH] @!!$@## gotta stop testing on one machine and commiting changes on another... I mistyped one word, and broke quotes completely. :( Somebody please get me a beer git-svn-id: file:///svn/phpbb/trunk@1824 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/bbcode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/bbcode.php b/phpBB/includes/bbcode.php index 2ad605c9eb..0a9a747832 100644 --- a/phpBB/includes/bbcode.php +++ b/phpBB/includes/bbcode.php @@ -169,7 +169,7 @@ function bbencode_second_pass($text, $uid) // New one liner to deal with opening quotes with usernames... // replaces the two line version that I had here before.. - $text = preg_replace("/\[quote:$uid=(?:\"?([^\"]*)\"?)\]/si", $bbcode_tbl['quote_username_open'], $text); + $text = preg_replace("/\[quote:$uid=(?:\"?([^\"]*)\"?)\]/si", $bbcode_tpl['quote_username_open'], $text); // [b] and [/b] for bolding text. $text = str_replace("[b:$uid]", $bbcode_tpl['b_open'], $text);