Bug tracker
URL parsing (specific url) (fix completed in vcs)
http://olympuswiki.naderman.de
Comments / History
http://www.powerpostgresql.com/PerfList/
I reversed the change to get_preg_expression in revision 1.515 for includes/functions.php and the first URL was working OK. NOTE: This should only affect users that are using CVS HEAD, as revision 1.503 was released with 3.0B4 (presumably without this issue?).
The next URL that fails:
pg_buffercache
I modified the preg in includes/bbcode.php.
Index: includes/bbcode.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/bbcode.php,v
retrieving revision 1.105
diff -u -p -r1.105 bbcode.php
--- includes/bbcode.php 17 Dec 2006 17:59:08 -0000 1.105
+++ includes/bbcode.php 2 Jan 2007 22:58:45 -0000
@@ -203,7 +203,7 @@ class bbcode
$this->bbcode_cache[$bbcode_id] = array(
'preg' => array(
'#\[url:$uid\]((.*?))\[/url:$uid\]#s' => $this->bbcode_tpl('url', $bbcode_id),
- '#\[url=([^\[]+?):$uid\](.*?)\[/url:$uid\]#s' => $this->bbcode_tpl('url', $bbcode_id),
+ '#\[url=([^\]]+?):$uid\](.*?)\[/url:$uid\]#s' => $this->bbcode_tpl('url', $bbcode_id),
)
);
break;
@@ -572,4 +572,4 @@ class bbcode
}
}
-?>
\ No newline at end of file
+?>
http://www.lithiumstudios.org/phpBB3/vi ... p?f=9&t=18