Browse Source

Merge pull request #3114 from matism/develop

new logout-method naming
Taylor Otwell 10 years ago
parent
commit
c494e83193
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Http/Controllers/AuthController.php

+ 1 - 1
app/Http/Controllers/AuthController.php

@@ -23,7 +23,7 @@ class AuthController extends Controller {
 	{
 		$this->auth = $auth;
 
-		$this->middleware('guest', ['except' => 'logout']);
+		$this->middleware('guest', ['except' => 'getLogout']);
 	}
 
 	/**