[geeklog-cvs] geeklog: Hmm, this doesn't look right ...

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Fri Jan 1 17:14:08 EST 2010


changeset 7571:dc6b98fef467
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/dc6b98fef467
user: Dirk Haun <dirk at haun-online.de>
date: Fri Jan 01 23:13:54 2010 +0100
description:
Hmm, this doesn't look right ...

diffstat:

 system/lib-plugins.php |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r dc7c7c24ba56 -r dc6b98fef467 system/lib-plugins.php
--- a/system/lib-plugins.php	Fri Jan 01 17:32:54 2010 +0100
+++ b/system/lib-plugins.php	Fri Jan 01 23:13:54 2010 +0100
@@ -2314,7 +2314,7 @@
     foreach ($_PLUGINS as $pi_name) {
         $function = 'plugin_getBlocks_' . $pi_name;
         if (function_exists($function)) {
-            $items = $function($side, $topic='');
+            $items = $function($side, $topic);
             if (is_array($items)) {
                 $ret = array_merge($ret, $items);
             }
@@ -2322,7 +2322,7 @@
     }
 
     if (function_exists('CUSTOM_getBlocks')) {
-       $cust_items .= CUSTOM_getBlocks($side, $topic='');
+       $cust_items .= CUSTOM_getBlocks($side, $topic);
        if (is_array($cust_items)) {
           $ret = array_merge($ret, $cust_items);
        }



More information about the geeklog-cvs mailing list