diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-04-02 20:39:44 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-04-02 20:39:44 +0000 |
commit | 1f70473a1eb05aa9c6188e3605325a5b7f24a933 (patch) | |
tree | b8af3495771e57e3ce6916c17533f1fcddce4c73 /modules/taxonomy/taxonomy.module | |
parent | 3ad7449bc7a31917aaaf38da7e09d1131c05ddc1 (diff) | |
download | brdo-1f70473a1eb05aa9c6188e3605325a5b7f24a933.tar.gz brdo-1f70473a1eb05aa9c6188e3605325a5b7f24a933.tar.bz2 |
- Fixed bug in taxonomy module. Patch by Gerhard.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 739bfda75..10c1f3317 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -747,7 +747,7 @@ function taxonomy_admin() { $output .= status(taxonomy_save_vocabulary($edit)); } else { - return status(taxonomy_save_term($edit)); + $output .= status(taxonomy_save_term($edit)); if (!$edit["tid"]) { // if INSERT show form again $output .= taxonomy_form_term(); @@ -763,6 +763,7 @@ function taxonomy_admin() { else { $output .= message_access(); } + return $output; } @@ -825,4 +826,4 @@ function taxonomy_help() { <p>Every term, or collection of terms, provides an <a href="http://backend.userland.com/stories/rss091">RSS</a> feed to which interested users may subscribe. The URL format for an sample RSS feed is <a href="<?php print url("node/feed/or/1,2"); ?>"><?php print url("node/feed/or/1,2"); ?></a>.</p> <?php } -?>
\ No newline at end of file +?> |