summaryrefslogtreecommitdiff
path: root/database/updates.inc
diff options
context:
space:
mode:
Diffstat (limited to 'database/updates.inc')
-rw-r--r--database/updates.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/database/updates.inc b/database/updates.inc
index 5bd6279a9..d8c5ddc2f 100644
--- a/database/updates.inc
+++ b/database/updates.inc
@@ -64,7 +64,7 @@ $sql_updates = array(
"2004-06-27" => "update_90",
"2004-06-30" => "update_91",
"2004-07-07" => "update_92",
- "2004-07-10" => "update_93",
+ "2004-07-11" => "update_93",
);
function update_32() {
@@ -1158,6 +1158,8 @@ function update_93() {
else {
$ret[] = update_sql('ALTER TABLE {url_alias} DROP INDEX src');
}
+ $ret[] = update_sql("INSERT INTO {url_alias} (src, dst) VALUES ('node/feed', 'index.rdf')");
+ $ret[] = update_sql("INSERT INTO {url_alias} (src, dst) VALUES ('node/feed', 'rss.xml')");
return $ret;
}