summaryrefslogtreecommitdiffstats
path: root/controller
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-05-14 19:22:55 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-05-14 19:22:55 +0200
commitb567d32b0e51fda52308cc3b64e8c21c969d33eb (patch)
tree2cf8d873a7d06a17df67c66e4e38198535317c56 /controller
parentd9acb9ed876d9814e468081d799f06ffd631580f (diff)
first commit, nothing working yet
Diffstat (limited to 'controller')
-rw-r--r--controller/pagecontroller.php11
1 files changed, 5 insertions, 6 deletions
diff --git a/controller/pagecontroller.php b/controller/pagecontroller.php
index db0fa48bf..2e9377a7e 100644
--- a/controller/pagecontroller.php
+++ b/controller/pagecontroller.php
@@ -51,7 +51,7 @@ class PageController extends Controller {
* @NoAdminRequired
*/
public function settings() {
- $settings = ['showAll', 'compact', 'readOnScroll', 'oldestFirst'];
+ $settings = ['showAll', 'compact', 'preventReadOnScroll', 'oldestFirst'];
$result = ['language' => $this->l10n->getLanguageCode()];
@@ -60,8 +60,7 @@ class PageController extends Controller {
$this->userId, $this->appName, $setting
) === '1';
}
-
- return $result;
+ return ['settings' => $result];
}
@@ -70,11 +69,11 @@ class PageController extends Controller {
*
* @param bool $showAll
* @param bool $compact
- * @param bool $readOnScroll
+ * @param bool $preventReadOnScroll
* @param bool $oldestFirst
*/
- public function updateSettings($showAll, $compact, $readOnScroll, $oldestFirst) {
- $settings = ['showAll', 'compact', 'readOnScroll', 'oldestFirst'];
+ public function updateSettings($showAll, $compact, $preventReadOnScroll, $oldestFirst) {
+ $settings = ['showAll', 'compact', 'preventReadOnScroll', 'oldestFirst'];
foreach ($settings as $setting) {
if(${$setting} !== null) {