Skip to content

Instantly share code, notes, and snippets.

@joelpittet
Created November 18, 2012 00:05
Show Gist options
  • Select an option

  • Save joelpittet/4101735 to your computer and use it in GitHub Desktop.

Select an option

Save joelpittet/4101735 to your computer and use it in GitHub Desktop.
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