diff --git a/cake/libs/model/model_behavior.php b/cake/libs/model/model_behavior.php index 0d4fdcaa199..02191aef989 100644 --- a/cake/libs/model/model_behavior.php +++ b/cake/libs/model/model_behavior.php @@ -418,10 +418,6 @@ public function enabled($name = null) { */ public function dispatchMethod(&$model, $method, $params = array(), $strict = false) { $methods = array_keys($this->__methods); - foreach ($methods as $key => $value) { - $methods[$key] = strtolower($value); - } - $method = strtolower($method); $check = array_flip($methods); $found = isset($check[$method]); $call = null;