diff options
author | Joas Schilling <coding@schilljs.com> | 2018-03-26 13:56:14 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-04-18 13:46:25 +0200 |
commit | 6b97429ebe3d4e58137cfd0117f9cd4ecca7ebd3 (patch) | |
tree | 430a7fdef594b1a844ac6883c39b0d915c515ce8 /lib/private | |
parent | fa65aaf1fc8836e1a0e5ee1ffe38ee032a487892 (diff) | |
download | nextcloud-server-6b97429ebe3d4e58137cfd0117f9cd4ecca7ebd3.tar.gz nextcloud-server-6b97429ebe3d4e58137cfd0117f9cd4ecca7ebd3.zip |
Show EOL warning in the update section
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private')
-rw-r--r-- | lib/private/Updater/VersionCheck.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/Updater/VersionCheck.php b/lib/private/Updater/VersionCheck.php index c7b829c9ec5..5cfc3c81a14 100644 --- a/lib/private/Updater/VersionCheck.php +++ b/lib/private/Updater/VersionCheck.php @@ -98,6 +98,7 @@ class VersionCheck { $tmp['url'] = (string)$data->url; $tmp['web'] = (string)$data->web; $tmp['autoupdater'] = (string)$data->autoupdater; + $tmp['eol'] = isset($data->eol) ? (string)$data->eol : '0'; } else { libxml_clear_errors(); } |