mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 17:16:18 +00:00
Adding a missing s.
This commit is contained in:
parent
750fe3aa05
commit
6d8c761f2f
1 changed files with 1 additions and 1 deletions
|
@ -1132,7 +1132,7 @@ class FormHelper extends AppHelper {
|
||||||
public function __call($method, $params) {
|
public function __call($method, $params) {
|
||||||
$options = array();
|
$options = array();
|
||||||
if (empty($params)) {
|
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])) {
|
if (isset($params[1])) {
|
||||||
$options = $params[1];
|
$options = $params[1];
|
||||||
|
|
Loading…
Add table
Reference in a new issue