From 578316bf52d192dac62c15b5aa5a55ec733dbeaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hannes=20Walln=C3=B6fer?= Date: Fri, 20 Sep 2002 16:13:46 +0000 Subject: [PATCH] Backport of antville.org changes: Directly call rss_action from rss092_action and rss10_action instead of doing a redirect(). --- code/Site/actions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/Site/actions.js b/code/Site/actions.js index 0d03eca5..ad58d859 100644 --- a/code/Site/actions.js +++ b/code/Site/actions.js @@ -37,7 +37,7 @@ function javascript_action() { */ function rss092_action() { - res.redirect(this.href("rss")); + this.rss_action(); } @@ -46,5 +46,5 @@ function rss092_action() { */ function rss10_action() { - res.redirect(this.href("rss")); + this.rss_action(); }