diff options
author | Joas Schilling <coding@schilljs.com> | 2018-03-14 14:21:49 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2018-03-20 15:52:30 +0100 |
commit | ec1e0397901f12cd1c9dc99eab60d6464cac5a0b (patch) | |
tree | ffc03af8a2d89d3ffb610c104f401f86a1f4c543 /lib/private/Updater | |
parent | 64feb3f3912f0976bb028f5d56a6434c55085925 (diff) | |
download | nextcloud-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 'lib/private/Updater')
-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(); } |