Created
November 18, 2012 00:05
-
-
Save joelpittet/4101735 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/core/modules/system/system.module b/core/modules/system/system.module | |
| index 4c37512..e5651d4 100644 | |
| --- a/core/modules/system/system.module | |
| +++ b/core/modules/system/system.module | |
| @@ -4290,7 +4290,7 @@ function theme_exposed_filters($variables) { | |
| $form = $variables['form']; | |
| $output = ''; | |
| - if (is_array($form) && isset($form['current']) { | |
| + if (is_array($form) && isset($form['current'])) { | |
| $items = array(); | |
| foreach (element_children($form['current']) as $key) { | |
| $items[] = drupal_render($form['current'][$key]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment