Browse Source

Merge pull request #2991 from alnutile/patch-3

[bug] Auth filter still redirects to /login not auth/login
Taylor Otwell 9 years ago
parent
commit
464c595c46
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Filters/AuthFilter.php

+ 1 - 1
app/Http/Filters/AuthFilter.php

@@ -23,7 +23,7 @@ class AuthFilter {
 			}
 			else
 			{
-				return Redirect::guest('login');
+				return Redirect::guest('auth/login');
 			}
 		}
 	}