Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_trackexits
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14002/plugins/serendipity_event_trackexits
Modified Files:
serendipity_event_trackexits.php
Log Message:
fix proper indexing for regex
Index: serendipity_event_trackexits.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_trackexits/serendipity_event_trackexits.php,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- serendipity_event_trackexits.php 9 Feb 2005 16:26:29 -0000 1.19
+++ serendipity_event_trackexits.php 24 Feb 2005 15:10:27 -0000 1.20
@@ -146,8 +146,9 @@
array(
1 => ' ',
2 => '"',
- 3 => $eventData['url'],
- 4 => '"'
+ 3 => '',
+ 4 => $eventData['url'],
+ 5 => '"'
),
true
);
|