Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6481
Modified Files:
serendipity_functions.inc.php
Log Message:
this should fix trackback problems
Index: serendipity_functions.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_functions.inc.php,v
retrieving revision 1.397
retrieving revision 1.398
diff -u -d -r1.397 -r1.398
--- serendipity_functions.inc.php 14 Aug 2004 19:55:44 -0000 1.397
+++ serendipity_functions.inc.php 16 Aug 2004 18:50:38 -0000 1.398
@@ -2465,7 +2465,7 @@
{
global $serendipity;
- if (!preg_match_all('@<a[^>]+?href\s*=\s*["\']?([^\'" >]+?)[ \'"]?[^>]*>([^<]*)</a>@i', $text, $matches)) {
+ if (!preg_match_all('@<a[^>]+?href\s*=\s*["\']?([^\'" >]+?)[ \'"][^>]*>([^<]*)</a>@i', $text, $matches)) {
return;
}
|