From c31be3ff3e36cab2c056c80ea7336cfc2b14348b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Elan=20Ruusam=C3=A4e?= Date: Tue, 6 Dec 2005 16:02:05 +0000 Subject: [PATCH] - similiar fix for /blog/feed Changed files: mass_url-password.patch -> 1.2 --- mass_url-password.patch | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/mass_url-password.patch b/mass_url-password.patch index bce3e82..2b72518 100644 --- a/mass_url-password.patch +++ b/mass_url-password.patch @@ -1,4 +1,5 @@ this patch fixes problem that /user/password generates 404 not found page +http://drupal.org/node/23350 --- ./mass_url.module 2004-11-24 17:00:33.000000000 +0200 +++ /tmp/mass_url.module 2005-12-06 17:30:16.000000000 +0200 @@ -11,3 +12,20 @@ this patch fixes problem that /user/password generates 404 not found page return; } else if ($url_username == ('help')) { + +similiar problem and a fix +http://drupal.org/node/18933 +--- mass_url.module 2005-12-06 17:32:15.000000000 +0200 ++++ /tmp/mass_url.module 2005-12-06 18:00:44.000000000 +0200 +@@ -49,6 +49,11 @@ + + $page_type = urldecode(arg(0)); + $url_username = urldecode(arg(1)); ++ ++ if (($page_type == 'blog') && ($url_username == 'feed')) { ++ blog_feed_last(); ++ return; ++ } + + if ($url_username == ('login')) { + user_page(); -- 2.43.0