diff --git a/cake/libs/model/model_behavior.php b/cake/libs/model/model_behavior.php index 0d4fdcaa1..02191aef9 100644 --- a/cake/libs/model/model_behavior.php +++ b/cake/libs/model/model_behavior.php @@ -418,10 +418,6 @@ class BehaviorCollection extends Object { */ 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;