summaryrefslogtreecommitdiff
path: root/app/Controllers/configureController.php
diff options
context:
space:
mode:
authorGravatar maTh <1645099+math-GH@users.noreply.github.com> 2023-11-16 13:18:33 +0100
committerGravatar GitHub <noreply@github.com> 2023-11-16 13:18:33 +0100
commit0504fc6766c3128c8d39f10a0b9d4bae3d1db1c7 (patch)
tree6808e86e861b0782e14fcaa71ca3d7dcf60ee73f /app/Controllers/configureController.php
parent96515d02bec0baeb6d4f097a3c38ceeae04c7c7c (diff)
Added: Display option for "My labels" (#5884)
* configs * Update entry_bottom.phtml * i18n strings * fix phpstand found error * reuse existing i18n string --------- Co-authored-by: math-gh <>
Diffstat (limited to 'app/Controllers/configureController.php')
-rw-r--r--app/Controllers/configureController.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php
index ccdad1baf..dab653ac9 100644
--- a/app/Controllers/configureController.php
+++ b/app/Controllers/configureController.php
@@ -34,7 +34,8 @@ class FreshRSS_configure_Controller extends FreshRSS_ActionController {
* - display of read action in footer
* - display of favorite action in footer
* - display of sharing action in footer
- * - display of tags in footer
+ * - display of article tags in footer
+ * - display of my Labels in footer
* - display of date in footer
* - display of open action in footer
* - html5 notification timeout (default: 0)
@@ -59,6 +60,7 @@ class FreshRSS_configure_Controller extends FreshRSS_ActionController {
FreshRSS_Context::$user_conf->bottomline_favorite = Minz_Request::paramBoolean('bottomline_favorite');
FreshRSS_Context::$user_conf->bottomline_sharing = Minz_Request::paramBoolean('bottomline_sharing');
FreshRSS_Context::$user_conf->bottomline_tags = Minz_Request::paramBoolean('bottomline_tags');
+ FreshRSS_Context::$user_conf->bottomline_myLabels = Minz_Request::paramBoolean('bottomline_myLabels');
FreshRSS_Context::$user_conf->bottomline_date = Minz_Request::paramBoolean('bottomline_date');
FreshRSS_Context::$user_conf->bottomline_link = Minz_Request::paramBoolean('bottomline_link');
FreshRSS_Context::$user_conf->show_nav_buttons = Minz_Request::paramBoolean('show_nav_buttons');