Browse Source

Removed development translation call

Jan Rio Krause 11 years ago
parent
commit
1e1a9a0f80
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Model/Behavior/CustomFindsBehavior.php

+ 1 - 1
Model/Behavior/CustomFindsBehavior.php

@@ -36,7 +36,7 @@ class CustomFindsBehavior extends ModelBehavior {
 	protected function _verifyContainable(Model $Model, $query) {
 		if (is_array($Model->actsAs) && in_array('Containable', $Model->actsAs) && isset($query['contain'])) {
 			if (array_search('CustomFinds', $Model->actsAs) > array_search('Containable', $Model->actsAs)) {
-				trigger_error(__d('tools', 'The behavior "Containable", if used together with "CustomFinds" needs to be loaded before.'), E_USER_WARNING);
+				trigger_error('The behavior "Containable", if used together with "CustomFinds" needs to be loaded before.', E_USER_WARNING);
 			}
 		}
 	}