diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-07-24 16:27:51 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-07-24 16:27:51 +0000 |
commit | d4ef1db69c437e9a1aeffc58c119a7ab5fa47101 (patch) | |
tree | 5c6c2b4e1b9da86497ed31d94883d8d246f94b80 | |
parent | ccf1af94fa7cea3608916541e964680489b9a56c (diff) | |
download | brdo-d4ef1db69c437e9a1aeffc58c119a7ab5fa47101.tar.gz brdo-d4ef1db69c437e9a1aeffc58c119a7ab5fa47101.tar.bz2 |
- Patch #286351 by TapocoL: fixed undefined index warning.
-rw-r--r-- | modules/filter/filter.admin.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/filter/filter.admin.inc b/modules/filter/filter.admin.inc index 8864f000a..8fcebb7aa 100644 --- a/modules/filter/filter.admin.inc +++ b/modules/filter/filter.admin.inc @@ -68,7 +68,7 @@ function theme_filter_admin_overview($form) { $element['weight']['#attributes']['class'] = 'input-format-order-weight'; $rows[] = array( 'data' => array( - check_plain($element['name']['#value']), + check_plain($element['name']['#markup']), drupal_render($element['roles']), drupal_render($form['default'][$id]), drupal_render($element['weight']), |