From bb5e71d4ee873d103db395247303a2bc9b61d42c Mon Sep 17 00:00:00 2001 From: Dries Buytaert <dries@buytaert.net> Date: Sat, 6 Oct 2007 15:23:18 +0000 Subject: [PATCH] - Patch #172636 by chx: fixed watchdog call. --- includes/form.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/form.inc b/includes/form.inc index a974c61c358a..3320b3e6af51 100644 --- a/includes/form.inc +++ b/includes/form.inc @@ -581,7 +581,7 @@ function _form_validate($elements, &$form_state, $form_id = NULL) { foreach ($value as $v) { if (!isset($options[$v])) { form_error($elements, t('An illegal choice has been detected. Please contact the site administrator.')); - watchdog('form', t('Illegal choice %choice in !name element.', array('%choice' => $v, '!name' => empty($elements['#title']) ? $elements['#parents'][0] : $elements['#title'])), WATCHDOG_ERROR); + watchdog('form', 'Illegal choice %choice in !name element.', array('%choice' => $v, '!name' => empty($elements['#title']) ? $elements['#parents'][0] : $elements['#title']), WATCHDOG_ERROR); } } } -- GitLab