- Adding an update to convert old taxonomy URL aliases to new ones.

4.5.x
Steven Wittens 2004-08-07 21:20:41 +00:00
parent 1e1144f105
commit daf175182e
1 changed files with 27 additions and 1 deletions

View File

@ -68,7 +68,8 @@ $sql_updates = array(
"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);