summaryrefslogtreecommitdiffstats
path: root/controller/pagecontroller.php
diff options
context:
space:
mode:
Diffstat (limited to 'controller/pagecontroller.php')
-rw-r--r--controller/pagecontroller.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/controller/pagecontroller.php b/controller/pagecontroller.php
index 6f37f5855..8bb266786 100644
--- a/controller/pagecontroller.php
+++ b/controller/pagecontroller.php
@@ -36,7 +36,7 @@ class PageController extends Controller {
private $config;
private $recommendedSites;
- public function __construct($appName,
+ public function __construct($AppName,
IRequest $request,
IConfig $settings,
IURLGenerator $urlGenerator,
@@ -44,13 +44,13 @@ class PageController extends Controller {
Config $config,
IL10N $l10n,
RecommendedSites $recommendedSites,
- $userId){
- parent::__construct($appName, $request);
+ $UserId){
+ parent::__construct($AppName, $request);
$this->settings = $settings;
$this->urlGenerator = $urlGenerator;
$this->appConfig = $appConfig;
$this->l10n = $l10n;
- $this->userId = $userId;
+ $this->userId = $UserId;
$this->config = $config;
$this->recommendedSites = $recommendedSites;
}