summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2004-09-01 11:45:24 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2004-09-01 11:45:24 +0000
commit9d517a73405620ac44a955dc4aa5047b7d5f83ec (patch)
tree36ac6767859b0762fdb52378a2467fdcef63af46
parentd441752dba7f61a97b534542baa3ec2a6f3b75d4 (diff)
downloadbrdo-9d517a73405620ac44a955dc4aa5047b7d5f83ec.tar.gz
brdo-9d517a73405620ac44a955dc4aa5047b7d5f83ec.tar.bz2
Fixing URL in taxonomy path update (taxonomy/terms -> taxonomy/term).
-rw-r--r--database/updates.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/database/updates.inc b/database/updates.inc
index 6eb667932..8f650b268 100644
--- a/database/updates.inc
+++ b/database/updates.inc
@@ -1257,10 +1257,10 @@ function update_98() {
if ($page == 'feed' || $page == 'page') {
switch ($op) {
case 'or':
- $new = 'taxonomy/terms/'. str_replace(',', '+', $terms);
+ $new = 'taxonomy/term/'. str_replace(',', '+', $terms);
break;
case 'and':
- $new = 'taxonomy/terms/'. $terms;
+ $new = 'taxonomy/term/'. $terms;
break;
}
if ($new) {