diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-03-07 06:37:30 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-03-07 06:37:30 +0000 |
commit | d659fedb389a42173d18bfc2aea2628372579a52 (patch) | |
tree | 9a8ae00e584b4915613d876e521250dfc53802ec /modules/taxonomy.module | |
parent | d5fe0cfe2017241094a84e4c4fb6bfdf1928f8eb (diff) | |
download | brdo-d659fedb389a42173d18bfc2aea2628372579a52.tar.gz brdo-d659fedb389a42173d18bfc2aea2628372579a52.tar.bz2 |
- Removed the path_uri() function in favor of the $base_url variable and
fixes a handful of bugs introduced by the clean URL patch.
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r-- | modules/taxonomy.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 4a0399165..e22c8d8d3 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -15,7 +15,7 @@ function taxonomy_feed($taxonomy) { else { $result = taxonomy_select_nodes($taxonomy, 0); $term = taxonomy_get_term($taxonomy->tids[0]); - $channel["link"] = path_uri(). url("taxonomy/view/$taxonomy->operator/$taxonomy->str_tids"); + $channel["link"] = url("taxonomy/view/$taxonomy->operator/$taxonomy->str_tids"); $channel["title"] = variable_get("site_name", "drupal") ." - ". $term->name; $channel["description"] = $term->description; node_feed($result, $channel); |