OSDN Git Service

FIX: PHP5/MySQL5における文法違反コードの修正
[nucleus-jp/nucleus-jp-ancient.git] / nucleus / libs / COMMENTACTIONS.php
index 56be73e..fcf961b 100644 (file)
@@ -355,7 +355,7 @@ class COMMENTACTIONS extends BaseActions {
                $params = array_merge(array(&$this->currentComment),$params);
                $params = array_merge(array(&$this->commentsObj->itemActions->currentItem),$params);
 
-               call_user_func_array(array(&$plugin,'doTemplateCommentsVar'), $params);
+               call_user_func_array(array($plugin, 'doTemplateCommentsVar'), $params);
        }
 
        /**
@@ -700,7 +700,7 @@ class COMMENTACTIONS extends BaseActions {
                $params = func_get_args();
                array_shift($params);
 
-               return call_user_func_array(array(&$plugin, 'doIf'), $params);
+               return call_user_func_array(array($plugin, 'doIf'), $params);
        }
 
 }