Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7889
Modified Files:
serendipity_sidebar_items.php
Log Message:
There has to be some default title set upon plugin creation. How & where?
:)OC
Index: serendipity_sidebar_items.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_sidebar_items.php,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- serendipity_sidebar_items.php 15 Jun 2004 20:27:29 -0000 1.60
+++ serendipity_sidebar_items.php 15 Jun 2004 20:35:02 -0000 1.61
@@ -515,7 +515,7 @@
function generate_content(&$title)
{
- $title = HTML_NUGGET;
+ $title = $this->get_config('title',$title);
if ($this->get_config('markup', 'true') == 'true') {
$entry = array('html_nugget' => $this->get_config('content'));
serendipity_plugin_api::hook_event('frontend_display', $entry);
|