diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-26 21:41:33 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-26 21:41:33 -0500 |
commit | c1173765ae7b2ba116d8a263f2d3f3cde0438362 (patch) | |
tree | d457d06ab2dc848a2d3611b14d91924b3cf21a45 /app | |
parent | 0f6a4e9de9b6fb1c07f1fd85bdd2786a5c21e3bd (diff) |
Remove unused variables
Diffstat (limited to 'app')
-rw-r--r-- | app/Controller/Base.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controller/Base.php b/app/Controller/Base.php index 232e09bf..d0d5e848 100644 --- a/app/Controller/Base.php +++ b/app/Controller/Base.php @@ -165,7 +165,7 @@ abstract class Base $this->container['dispatcher']->dispatch('session.bootstrap', new Event); if (! $this->acl->isPublicAction($controller, $action)) { - $this->handleAuthentication($controller, $action); + $this->handleAuthentication(); $this->handleAuthorization($controller, $action); } } @@ -175,7 +175,7 @@ abstract class Base * * @access public */ - public function handleAuthentication($controller, $action) + public function handleAuthentication() { if (! $this->authentication->isAuthenticated()) { |