summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/filter/filter.admin.inc2
-rw-r--r--modules/taxonomy/taxonomy.admin.inc2
-rw-r--r--modules/taxonomy/taxonomy.module2
3 files changed, 3 insertions, 3 deletions
diff --git a/modules/filter/filter.admin.inc b/modules/filter/filter.admin.inc
index b2a5aaca0..45a3836ad 100644
--- a/modules/filter/filter.admin.inc
+++ b/modules/filter/filter.admin.inc
@@ -369,7 +369,7 @@ function theme_filter_admin_order($form) {
$output .= drupal_render($form);
drupal_add_tabledrag('filter-order', 'order', 'sibling', 'filter-order-weight', NULL, NULL, FALSE);
-
+
return $output;
}
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index 97f1300c3..d0ca2016a 100644
--- a/modules/taxonomy/taxonomy.admin.inc
+++ b/modules/taxonomy/taxonomy.admin.inc
@@ -278,7 +278,7 @@ function taxonomy_form_term(&$form_state, $vocabulary, $edit = array()) {
// taxonomy_get_tree and taxonomy_get_parents may contain large numbers of
// items so we check for taxonomy_override_selector before loading the
// full vocabulary. Contrib modules can then intercept before
- // hook_form_alter to provide scalable alternatives.
+ // hook_form_alter to provide scalable alternatives.
if (!variable_get('taxonomy_override_selector', FALSE)) {
$parent = array_keys(taxonomy_get_parents($edit['tid']));
$children = taxonomy_get_tree($vocabulary->vid, $edit['tid']);
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index dbb3c057e..9c4ed8dec 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -428,7 +428,7 @@ function taxonomy_get_vocabularies($type = NULL) {
/**
* Implementation of hook_form_alter().
* Generate a form for selecting terms to associate with a node.
- * We check for taxonomy_override_selector before loading the full
+ * We check for taxonomy_override_selector before loading the full
* vocabulary, so contrib modules can intercept before hook_form_alter
* and provide scalable alternatives.
*/