Adding a missing s.

This commit is contained in:
mark_story 2010-08-17 22:25:45 -04:00
parent 750fe3aa05
commit 6d8c761f2f

View file

@ -1132,7 +1132,7 @@ class FormHelper extends AppHelper {
public function __call($method, $params) {
$options = array();
if (empty($params)) {
throw new Exception(sprintf(__('Missing field name for FormHelper::%'), $method));
throw new Exception(sprintf(__('Missing field name for FormHelper::%s'), $method));
}
if (isset($params[1])) {
$options = $params[1];