Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32232
Modified Files:
serendipity_sidebar_items.php
Log Message:
missing commit for the "apply html nugget markup" bug
Index: serendipity_sidebar_items.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_sidebar_items.php,v
retrieving revision 1.56
retrieving revision 1.57
diff -u -d -r1.56 -r1.57
--- serendipity_sidebar_items.php 13 Apr 2004 12:08:33 -0000 1.56
+++ serendipity_sidebar_items.php 21 Apr 2004 14:03:40 -0000 1.57
@@ -502,7 +502,7 @@
function generate_content(&$title)
{
$title = $this->get_config('title', $title);
- if ($this->get_config('markup') == 'true' || $this->get_config('markup') == '') {
+ if ($this->get_config('markup', 'true') == 'true') {
$entry = array('html_nugget' => $this->get_config('content'));
serendipity_plugin_api::hook_event('frontend_display', $entry);
echo $entry['html_nugget'];
|