From daf175182e42c2d35fdb744550117eb374e81fc9 Mon Sep 17 00:00:00 2001 From: Steven Wittens <steven@10.no-reply.drupal.org> Date: Sat, 7 Aug 2004 21:20:41 +0000 Subject: [PATCH] - Adding an update to convert old taxonomy URL aliases to new ones. --- database/updates.inc | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/database/updates.inc b/database/updates.inc index c472800bcbc5..e2faae044e75 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -68,7 +68,8 @@ "2004-07-22" => "update_94", "2004-07-30" => "update_95", "2004-08-04" => "update_96", - "2004-08-06" => "update_97" + "2004-08-06" => "update_97", + "2004-08-07" => "update_98" ); function update_32() { @@ -1282,6 +1283,31 @@ function update_97() { return array(); } +function update_98() { + $result = db_query("SELECT pid, src FROM {url_alias} WHERE src LIKE 'taxonomy/%%'", $from); + while ($alias = db_fetch_object($result)) { + list(, $page, $op, $terms) = explode('/', $alias->src); + if ($page == 'feed' || $page == 'page') { + switch ($op) { + case 'or': + $new = 'taxonomy/terms/'. str_replace(',', '+', $terms); + break; + case 'and': + $new = 'taxonomy/terms/'. $terms; + break; + } + if ($new) { + if ($page == 'feed') { + $new .= '/0/feed'; + } + db_query("UPDATE {url_alias} SET src = '%s' WHERE pid = '%s'", $new, $alias->pid); + } + } + } + + return array(); +} + function update_sql($sql) { $edit = $_POST["edit"]; $result = db_query($sql); -- GitLab