Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_trackexits
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15205/plugins/serendipity_event_trackexits
Modified Files:
Tag: branch-smarty
serendipity_event_trackexits.php
Log Message:
MFH evan's bug. Please commit bugs always to HEAD + branch-smarty.
Index: serendipity_event_trackexits.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_trackexits/serendipity_event_trackexits.php,v
retrieving revision 1.11.2.1
retrieving revision 1.11.2.2
diff -u -d -r1.11.2.1 -r1.11.2.2
--- serendipity_event_trackexits.php 14 Sep 2004 13:11:17 -0000 1.11.2.1
+++ serendipity_event_trackexits.php 24 Sep 2004 09:16:20 -0000 1.11.2.2
@@ -178,7 +178,7 @@
);
}
- if (isset($this->links[$url])) {
+ if (is_array($this->links) && isset($this->links[$url])) {
return sprintf(
'<a%shref="%sexit.php?url_id=%s%s" title="%s" onmouseover="window.status=\'%s\';return true;" onmouseout="window.status=\'\';return true;"',
$buffer[1],
|