Update of /cvsroot/php-blog/serendipity/plugins/serendipity_event_statistics
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17298
Modified Files:
serendipity_event_statistics.php
Log Message:
fixed wrong constant name
Index: serendipity_event_statistics.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/plugins/serendipity_event_statistics/serendipity_event_statistics.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- serendipity_event_statistics.php 26 Mar 2004 16:54:03 -0000 1.2
+++ serendipity_event_statistics.php 29 Mar 2004 07:18:12 -0000 1.3
@@ -351,7 +351,7 @@
foreach($tbr_rows AS $tb => $tb_stat) {
?>
<dt><strong><a href="mailto:<?php echo $tb_stat['email']; ?>"><?php echo $tb_stat['author']; ?></a> (<a href="<?php echo $tb_stat['url']; ?>">Link</a>)</strong></dt>
- <dd><?php echo $tb_stat['postings']; ?> <?php echo PLUGIN_EVENT_OUT_TRACKBACK2; ?></dd>
+ <dd><?php echo $tb_stat['postings']; ?> <?php echo PLUGIN_EVENT_OUT_TOPTRACKBACK2; ?></dd>
<?php
}
}
|