diff --git a/handlers/views_handler_filter.inc b/handlers/views_handler_filter.inc
index 46cca74..1c8ba44 100644
--- a/handlers/views_handler_filter.inc
+++ b/handlers/views_handler_filter.inc
@@ -752,7 +752,7 @@ class views_handler_filter extends views_handler {
 
     // Provide 3 options to start when we are in a new group.
     if (count($this->options['group_info']['group_items']) == 0) {
-      $this->options['group_info']['group_items'] = array(array(), array(), array());
+      $this->options['group_info']['group_items'] = array_fill(1, 3, array());
     }
 
     // After the general settings, comes a table with all the existent groups.
diff --git a/includes/admin.inc b/includes/admin.inc
index 790f882..82cc751 100644
--- a/includes/admin.inc
+++ b/includes/admin.inc
@@ -3552,7 +3552,7 @@ function theme_views_ui_build_group_filter_form($variables) {
   $header = array(
     t('Default'),
     t('Weight'),
-    t('Title'),
+    t('Label'),
     t('Operator'),
     t('Value'),
     t('Operations'),
diff --git a/js/views-admin.js b/js/views-admin.js
index 2759035..4a7b446 100644
--- a/js/views-admin.js
+++ b/js/views-admin.js
@@ -818,32 +818,17 @@ Drupal.behaviors.viewsRemoveIconClass.attach = function (context, settings) {
 };
 
 /**
- * Check the checkbox associated to a link when the link is clicked.
- */
-Drupal.behaviors.viewsRemoveFromCheckbox = {};
-Drupal.behaviors.viewsRemoveFromCheckbox.attach = function (context, settings) {
-  jQuery('a.views-remove-link', context).click(function() {
-    jQuery(this).parent().find('input.views-remove-checkbox').attr('checked', true);
-  });
-};
-
-/**
  * Change "Expose filter" buttons into checkboxes.
  */
 Drupal.behaviors.viewsUiCheckboxify = {};
 Drupal.behaviors.viewsUiCheckboxify.attach = function (context, settings) {
   var $ = jQuery;
-  var $buttons = $('#edit-options-expose-button-button').once('views-ui-checkboxify');
+  var $buttons = $('#edit-options-expose-button-button, #edit-options-group-button-button').once('views-ui-checkboxify');
   var length = $buttons.length;
   var i;
   for (i = 0; i < length; i++) {
     new Drupal.viewsUi.Checkboxifier($buttons[i]);
   }
-  $buttons = $('#edit-options-group-button-button').once('views-ui-checkboxify');
-  length = $buttons.length;
-  for (i = 0; i < length; i++) {
-    new Drupal.viewsUi.Checkboxifier($buttons[i]);
-  }
 };
 
 /**
