OSDN Git Service

FIX: PHP5/MySQL5における文法違反コードの修正
[nucleus-jp/nucleus-jp-ancient.git] / nucleus / libs / BaseActions.php
index 660e3d0..2702a1d 100644 (file)
@@ -224,7 +224,7 @@ class BaseActions {
                $this->_addIfExecute();
 
                $args = func_get_args();
                $this->_addIfExecute();
 
                $args = func_get_args();
-               $condition = call_user_func_array(array(&$this,'checkCondition'), $args);
+               $condition = call_user_func_array(array($this,'checkCondition'), $args);
                $this->_addIfCondition($condition);
        }
 
                $this->_addIfCondition($condition);
        }
 
@@ -263,7 +263,7 @@ class BaseActions {
                } else {
                        ob_end_clean();
                        $args = func_get_args();
                } else {
                        ob_end_clean();
                        $args = func_get_args();
-                       $condition = call_user_func_array(array(&$this,'checkCondition'), $args);
+                       $condition = call_user_func_array(array($this,'checkCondition'), $args);
                        $this->_addIfCondition($condition);
                }
        }
                        $this->_addIfCondition($condition);
                }
        }
@@ -275,7 +275,7 @@ class BaseActions {
                $this->_addIfExecute();
 
                $args = func_get_args();
                $this->_addIfExecute();
 
                $args = func_get_args();
-               $condition = call_user_func_array(array(&$this,'checkCondition'), $args);
+               $condition = call_user_func_array(array($this,'checkCondition'), $args);
                $this->_addIfCondition(!$condition);
        }
 
                $this->_addIfCondition(!$condition);
        }
 
@@ -295,7 +295,7 @@ class BaseActions {
                } else {
                        ob_end_clean();
                        $args = func_get_args();
                } else {
                        ob_end_clean();
                        $args = func_get_args();
-                       $condition = call_user_func_array(array(&$this,'checkCondition'), $args);
+                       $condition = call_user_func_array(array($this,'checkCondition'), $args);
                        $this->_addIfCondition(!$condition);
                }
        }
                        $this->_addIfCondition(!$condition);
                }
        }