summaryrefslogtreecommitdiff
path: root/modules/filter.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-03-14 15:15:46 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-03-14 15:15:46 +0000
commitfe19714805e12e78aa59fe59c484a0a2019cd7c1 (patch)
treee97ad0616ad67a5d03ec47ddab935d7739daf607 /modules/filter.module
parentc13835780938a64deaf7fce6b3e644991684bc2b (diff)
downloadbrdo-fe19714805e12e78aa59fe59c484a0a2019cd7c1.tar.gz
brdo-fe19714805e12e78aa59fe59c484a0a2019cd7c1.tar.bz2
- theme_placeholder to theme('placeholder')
Diffstat (limited to 'modules/filter.module')
-rw-r--r--modules/filter.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/filter.module b/modules/filter.module
index e7df3c8fd..929007ba0 100644
--- a/modules/filter.module
+++ b/modules/filter.module
@@ -837,7 +837,7 @@ function filter_form_validate($form) {
}
}
form_error($form, t('An illegal choice has been detected. Please contact the site administrator.'));
- watchdog('form', t('Illegal choice %choice in %name element.', array('%choice' => theme('placeholder', check_plain($v)), '%name' => theme_placeholder(empty($form['#title']) ? $form['#parents'][0] : $form['#title'])), WATCHDOG_ERROR));
+ watchdog('form', t('Illegal choice %choice in %name element.', array('%choice' => theme('placeholder', check_plain($v)), '%name' => theme('placeholder', empty($form['#title']) ? $form['#parents'][0] : $form['#title'])), WATCHDOG_ERROR));
}
/**