aboutsummaryrefslogtreecommitdiff
path: root/app/Models/Context.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-10-07 22:54:23 +0200
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2016-10-07 22:54:23 +0200
commit79696f31adde2a3e0a224294104b19ccc77565cc (patch)
tree10255440b0fcfb577be5b13895f607c54fc51d61 /app/Models/Context.php
parent8e5221c6f25deffbe62245024283604b7fa038b2 (diff)
Meta description option
https://github.com/FreshRSS/FreshRSS/issues/1105
Diffstat (limited to 'app/Models/Context.php')
-rw-r--r--app/Models/Context.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/Models/Context.php b/app/Models/Context.php
index 33e65a619..a38b1e0f1 100644
--- a/app/Models/Context.php
+++ b/app/Models/Context.php
@@ -144,11 +144,13 @@ class FreshRSS_Context {
case 'a':
self::$current_get['all'] = true;
self::$name = _t('index.feed.title');
+ self::$description = self::$system_conf->meta_description;
self::$get_unread = self::$total_unread;
break;
case 's':
self::$current_get['starred'] = true;
self::$name = _t('index.feed.title_fav');
+ self::$description = self::$system_conf->meta_description;
self::$get_unread = self::$total_starred['unread'];
// Update state if favorite is not yet enabled.