summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/lib/Settings/Admin.php
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2018-03-20 22:39:00 +0100
committerGitHub <noreply@github.com>2018-03-20 22:39:00 +0100
commit18994cd7008f422fb12b1d4a9ba164cb25f8984a (patch)
tree945cbe28eec37027a42c23349c352a0bc6e68d0f /apps/updatenotification/lib/Settings/Admin.php
parent29c551c88ff42e4cd0699787f038175b01e56980 (diff)
parentec1e0397901f12cd1c9dc99eab60d6464cac5a0b (diff)
downloadnextcloud-server-18994cd7008f422fb12b1d4a9ba164cb25f8984a.tar.gz
nextcloud-server-18994cd7008f422fb12b1d4a9ba164cb25f8984a.zip
Merge pull request #8821 from nextcloud/feature/noid/show-eol-warning
Show EOL warning in the update section
Diffstat (limited to 'apps/updatenotification/lib/Settings/Admin.php')
-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),