Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv12843
Modified Files:
serendipity_sidebar_items.php
Log Message:
Fixing bug #720632 (exit-links in html_nuggets plugin aren't counted)
Let me know if it breaks anything?
Index: serendipity_sidebar_items.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_sidebar_items.php,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- serendipity_sidebar_items.php 25 May 2003 16:36:33 -0000 1.13
+++ serendipity_sidebar_items.php 3 Jun 2003 15:14:56 -0000 1.14
@@ -195,7 +195,7 @@
function generate_content(&$title)
{
$title = $this->get_config('title', $title);
- echo $this->get_config('content');
+ echo serendipity_markup_text($this->get_config('content'));
}
}
|