|
From: Nathan C. <na...@us...> - 2001-12-11 09:13:06
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv11817/includes
Modified Files:
bbcode.php
Log Message:
bug #489842 -- some pages were doing bbencode_second and make_click in a bad order.
Index: bbcode.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/bbcode.php,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -r1.18 -r1.19
*** bbcode.php 2001/12/06 23:39:16 1.18
--- bbcode.php 2001/12/11 09:13:04 1.19
***************
*** 579,582 ****
--- 579,583 ----
function make_clickable($text)
{
+
// pad it with a space so we can match things at the start of the 1st line.
$ret = " " . $text;
|