[geeklog-hg] geeklog: E_ALL fix: removed unused parameter

geeklog-cvs at lists.geeklog.net geeklog-cvs at lists.geeklog.net
Sat Jun 30 07:21:58 EDT 2012


changeset 8742:a7a99d84a74d
url:  http://project.geeklog.net/cgi-bin/hgwebdir.cgi/geeklog/rev/a7a99d84a74d
user: Dirk Haun <dirk at haun-online.de>
date: Sat Jun 30 12:13:28 2012 +0200
description:
E_ALL fix: removed unused parameter

diffstat:

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

diffs (21 lines):

diff -r 05577d0c8366 -r a7a99d84a74d system/lib-plugins.php
--- a/system/lib-plugins.php	Fri Jun 29 22:21:48 2012 +0200
+++ b/system/lib-plugins.php	Sat Jun 30 12:13:28 2012 +0200
@@ -2490,7 +2490,7 @@
     foreach ($_PLUGINS as $pi_name) {
         $function = 'plugin_getBlocksConfig_' . $pi_name;
         if (function_exists($function)) {
-            $items = $function($side, $topic, $config);
+            $items = $function($side, $topic);
             if (is_array($items)) {
                 $ret = array_merge($ret, $items);
             }
@@ -2498,7 +2498,7 @@
     }
 
     if (function_exists('CUSTOM_getBlocksConfig')) {
-       $cust_items = CUSTOM_getBlocks($side, $topic, $config);
+       $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