Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/PageController.php')
-rwxr-xr-xlib/Controller/PageController.php4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index 5e2ca6c..163f02e 100755
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -9,12 +9,10 @@ use OCP\AppFramework\Controller;
class PageController extends Controller {
private $userId;
- private $RootFolder;
private $config;
- public function __construct($AppName, IRequest $request, $UserId, $RootFolder, $Config){
+ public function __construct($AppName, IRequest $request, $UserId, $Config){
parent::__construct($AppName, $request);
$this->userId = $UserId;
- $this->RootFolder = $RootFolder;
$this->config = $Config;
}