summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-10-19 09:46:22 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-10-19 09:46:22 +0000
commit468b9e8e5add94256c88dbca8b03bbc855b39827 (patch)
tree06c970dc32895bc7bd17c70e17592def432b5f62
parentaa5ad370822b22367c3ff53347e24f63ff31d7a4 (diff)
downloadbrdo-468b9e8e5add94256c88dbca8b03bbc855b39827.tar.gz
brdo-468b9e8e5add94256c88dbca8b03bbc855b39827.tar.bz2
- Code style
-rw-r--r--modules/taxonomy.module2
-rw-r--r--modules/taxonomy/taxonomy.module2
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module
index 04b699463..7d5808ceb 100644
--- a/modules/taxonomy.module
+++ b/modules/taxonomy.module
@@ -1213,7 +1213,7 @@ function taxonomy_rss_item($node) {
foreach ($terms as $term) {
$output[] = array('key' => 'category',
'value' => check_plain($term->name),
- 'attributes' => array('domain' => url('taxonomy/term/'.$term->tid, NULL, NULL, TRUE)));
+ 'attributes' => array('domain' => url('taxonomy/term/'. $term->tid, NULL, NULL, TRUE)));
}
return $output;
}
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 04b699463..7d5808ceb 100644
--- a/modules/taxonomy/taxonomy.module
+++ b/modules/taxonomy/taxonomy.module
@@ -1213,7 +1213,7 @@ function taxonomy_rss_item($node) {
foreach ($terms as $term) {
$output[] = array('key' => 'category',
'value' => check_plain($term->name),
- 'attributes' => array('domain' => url('taxonomy/term/'.$term->tid, NULL, NULL, TRUE)));
+ 'attributes' => array('domain' => url('taxonomy/term/'. $term->tid, NULL, NULL, TRUE)));
}
return $output;
}