aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/configureController.php
diff options
context:
space:
mode:
authorGravatar Alexis Degrugillier <github@ainw.org> 2014-09-21 18:23:25 -0400
committerGravatar Alexis Degrugillier <github@ainw.org> 2014-09-21 18:23:25 -0400
commit3753ea8fd673feb16a2bfb323fea2b5ff964d77e (patch)
tree0fc5b03f01e7e99080fe7bd270a47885036b63c6 /app/Controllers/configureController.php
parentf87dfbc528f4fa451a2a213fdbd3fcaf27308de8 (diff)
Change parameter settings to be consistent through out the file
Diffstat (limited to 'app/Controllers/configureController.php')
-rwxr-xr-xapp/Controllers/configureController.php20
1 files changed, 4 insertions, 16 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php
index 1e341b412..0e4c0be52 100755
--- a/app/Controllers/configureController.php
+++ b/app/Controllers/configureController.php
@@ -198,17 +198,11 @@ class FreshRSS_configure_Controller extends Minz_ActionController {
* - display of open action in footer
* - html5 notification timeout (default: 0)
* Default values are false unless specified.
- *
- * @todo refactor theme section to use the same syntax everywhere
*/
public function displayAction() {
if (Minz_Request::isPost()) {
$this->view->conf->_language(Minz_Request::param('language', 'en'));
- $themeId = Minz_Request::param('theme', '');
- if ($themeId == '') {
- $themeId = FreshRSS_Themes::defaultTheme;
- }
- $this->view->conf->_theme($themeId);
+ $this->view->conf->_theme(Minz_Request::param('theme', FreshRSS_Themes::$defaultTheme));
$this->view->conf->_content_width(Minz_Request::param('content_width', 'thin'));
$this->view->conf->_topline_read(Minz_Request::param('topline_read', false));
$this->view->conf->_topline_favorite(Minz_Request::param('topline_favorite', false));
@@ -386,18 +380,12 @@ class FreshRSS_configure_Controller extends Minz_ActionController {
*
* @todo explain why the default value is -2 but this value does not
* exist in the drop-down list
- * @todo refactor configuration setting syntax to be consistent with the
- * other methods
*/
public function archivingAction() {
if (Minz_Request::isPost()) {
- $old = Minz_Request::param('old_entries', 3);
- $keepHistoryDefault = Minz_Request::param('keep_history_default', 0);
- $ttlDefault = Minz_Request::param('ttl_default', -2);
-
- $this->view->conf->_old_entries($old);
- $this->view->conf->_keep_history_default($keepHistoryDefault);
- $this->view->conf->_ttl_default($ttlDefault);
+ $this->view->conf->_old_entries(Minz_Request::param('old_entries', 3));
+ $this->view->conf->_keep_history_default(Minz_Request::param('keep_history_default', 0));
+ $this->view->conf->_ttl_default(Minz_Request::param('ttl_default', -2));
$this->view->conf->save();
invalidateHttpCache();