summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/lib/Settings
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-03-14 14:21:49 +0100
committerJoas Schilling <coding@schilljs.com>2018-03-20 15:52:30 +0100
commitec1e0397901f12cd1c9dc99eab60d6464cac5a0b (patch)
treeffc03af8a2d89d3ffb610c104f401f86a1f4c543 /apps/updatenotification/lib/Settings
parent64feb3f3912f0976bb028f5d56a6434c55085925 (diff)
downloadnextcloud-server-ec1e0397901f12cd1c9dc99eab60d6464cac5a0b.tar.gz
nextcloud-server-ec1e0397901f12cd1c9dc99eab60d6464cac5a0b.zip
Show EOL warning in the update section
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/updatenotification/lib/Settings')
-rw-r--r--apps/updatenotification/lib/Settings/Admin.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/updatenotification/lib/Settings/Admin.php b/apps/updatenotification/lib/Settings/Admin.php
index 258cba35e80..5213eb905ee 100644
--- a/apps/updatenotification/lib/Settings/Admin.php
+++ b/apps/updatenotification/lib/Settings/Admin.php
@@ -94,6 +94,7 @@ class Admin implements ISettings {
'newVersionString' => empty($updateState['updateVersion']) ? '' : $updateState['updateVersion'],
'downloadLink' => empty($updateState['downloadLink']) ? '' : $updateState['downloadLink'],
'updaterEnabled' => empty($updateState['updaterEnabled']) ? false : $updateState['updaterEnabled'],
+ 'versionIsEol' => empty($updateState['versionIsEol']) ? false : $updateState['versionIsEol'],
'isDefaultUpdateServerURL' => $updateServerURL === $defaultUpdateServerURL,
'updateServerURL' => $updateServerURL,
'notifyGroups' => $this->getSelectedGroups($notifyGroups),