summaryrefslogtreecommitdiffstats
path: root/controller
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-08-27 14:07:47 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-08-27 14:07:47 +0200
commit619011d11299a601d52d576920a668a6e286d2e7 (patch)
tree99cab70e6acfdd0140a90b73678a9b631d532d92 /controller
parentadad6ca280f2284a0ea4a1c41c8adea4ae1b141a (diff)
fix config
Diffstat (limited to 'controller')
-rw-r--r--controller/admincontroller.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/controller/admincontroller.php b/controller/admincontroller.php
index 15b94fe2d..7c9ccf7f2 100644
--- a/controller/admincontroller.php
+++ b/controller/admincontroller.php
@@ -25,10 +25,10 @@ class AdminController extends Controller {
private $configPath;
public function __construct($AppName, IRequest $request, Config $config,
- $ConfigPath){
+ $configFile){
parent::__construct($AppName, $request);
$this->config = $config;
- $this->configPath = $ConfigPath;
+ $this->configPath = $configFile;
}
// There are no checks for the index method since the output is rendered
@@ -83,4 +83,4 @@ class AdminController extends Controller {
}
-} \ No newline at end of file
+}