diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-19 09:46:22 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-10-19 09:46:22 +0000 |
commit | 468b9e8e5add94256c88dbca8b03bbc855b39827 (patch) | |
tree | 06c970dc32895bc7bd17c70e17592def432b5f62 | |
parent | aa5ad370822b22367c3ff53347e24f63ff31d7a4 (diff) | |
download | brdo-468b9e8e5add94256c88dbca8b03bbc855b39827.tar.gz brdo-468b9e8e5add94256c88dbca8b03bbc855b39827.tar.bz2 |
- Code style
-rw-r--r-- | modules/taxonomy.module | 2 | ||||
-rw-r--r-- | modules/taxonomy/taxonomy.module | 2 |
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; } |