diff --git a/CHANGELOG.txt b/CHANGELOG.txt index e180b2fc5d21a94e52ec9250356c200d6397ba5d..16267e4cf737b20b1e4ec202bfcc7b465e23dc92 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -9,15 +9,15 @@ Drupal x.x.x, xxxx-xx-xx * added support for multiple roles per user. * made it possible to add custom profile fields. * made it possible to browse the profiles by field. -- refactored 403 (forbidden) handling and added support for custom 403 pages. - comment module: - * made it possible for anonymous users to leave their name, e-mail address and the URL of their homepage. + * made it possible to comment without having to register. - forum module: * added support for sticky forum topics. * made it possible to track forum topics. - syndication: * added support for RSS ping-notifications of http://technorati.com/. * refactored the categorization of syndicated news items. + * added URL aliases for 'rss.xml' and 'index.rdf'. - database backend: * added support for multiple database connections. - theme system: @@ -32,6 +32,7 @@ Drupal x.x.x, xxxx-xx-xx - accessibility: * improved the accessibility of the archive module's calendar. * improved form handling and error reporting. +- refactored 403 (forbidden) handling and added support for custom 403 pages. - documentation: * added PHPDoc/Doxygen comments. diff --git a/database/updates.inc b/database/updates.inc index 5bd6279a9f23baf1ee3e9e2c6278eaa4f3be4ddf..d8c5ddc2f7f8a7df56c2a4d701f4c9a94f347c0e 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -64,7 +64,7 @@ "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; }