|
From: Jonathan H. <the...@us...> - 2002-01-09 01:39:26
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv9241
Modified Files:
bbcode.php
Log Message:
@!!$@## 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
Index: bbcode.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/bbcode.php,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -r1.21 -r1.22
*** bbcode.php 2002/01/08 19:00:28 1.21
--- bbcode.php 2002/01/09 01:39:23 1.22
***************
*** 170,174 ****
// 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);
// [b] and [/b] for bolding text.
--- 170,174 ----
// 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_tpl['quote_username_open'], $text);
// [b] and [/b] for bolding text.
|