]> git.pld-linux.org Git - packages/drupal-mod-mass_url.git/commitdiff
- similiar fix for /blog/feed
authorElan Ruusamäe <glen@pld-linux.org>
Tue, 6 Dec 2005 16:02:05 +0000 (16:02 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    mass_url-password.patch -> 1.2

mass_url-password.patch

index bce3e82b8a9249e6b2f306c279eb0b4e70f88b47..2b7251879d2591699a014a4083d6d102bf9e7474 100644 (file)
@@ -1,4 +1,5 @@
 this patch fixes problem that /user/password generates 404 not found page
 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
 
 --- ./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')) {
      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();
This page took 0.077876 seconds and 4 git commands to generate.