aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/views/index/normal.phtml2
-rw-r--r--app/views/index/reader.phtml2
-rw-r--r--config-user.default.php2
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/index/normal.phtml b/app/views/index/normal.phtml
index 42c2e0072..26e38dc91 100644
--- a/app/views/index/normal.phtml
+++ b/app/views/index/normal.phtml
@@ -14,7 +14,7 @@ $display_others = true;
$hidePosts = !FreshRSS_Context::userConf()->display_posts;
$lazyload = FreshRSS_Context::userConf()->lazyload;
$content_width = FreshRSS_Context::userConf()->content_width;
-$MAX_TAGS_DISPLAYED = FreshRSS_Context::userConf()->show_tags_max;
+$MAX_TAGS_DISPLAYED = (int)FreshRSS_Context::userConf()->show_tags_max;
$useKeepUnreadImportant = !FreshRSS_Context::isImportant() && !FreshRSS_Context::isFeed();
$today = @strtotime('today');
diff --git a/app/views/index/reader.phtml b/app/views/index/reader.phtml
index f2d7ab46b..af51933cf 100644
--- a/app/views/index/reader.phtml
+++ b/app/views/index/reader.phtml
@@ -10,7 +10,7 @@ call_user_func($this->callbackBeforeEntries, $this);
$lazyload = FreshRSS_Context::userConf()->lazyload;
$content_width = FreshRSS_Context::userConf()->content_width;
-$MAX_TAGS_DISPLAYED = FreshRSS_Context::userConf()->show_tags_max;
+$MAX_TAGS_DISPLAYED = (int)FreshRSS_Context::userConf()->show_tags_max;
?>
<main id="stream" class="reader">
<h1 class="title_hidden"><?= _t('conf.reading.view.reader') ?></h1>
diff --git a/config-user.default.php b/config-user.default.php
index 7bf5485f1..6282fc61b 100644
--- a/config-user.default.php
+++ b/config-user.default.php
@@ -37,7 +37,7 @@ return array (
'display_posts' => false,
'display_categories' => 'active', //{ active, remember, all, none }
'show_tags' => '0',
- 'show_tags_max' => '7',
+ 'show_tags_max' => 7,
'show_author_date' => 'h',
'show_feed_name' => 'a',
'hide_read_feeds' => true,