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:50:29 +0200 |
commit | 5f1f6330c9eadb450e4ca3fe6b5fff58ca00238d (patch) | |
tree | 4e4642e1285b7eabbe1acf429a94fa3dc602dacf /lib | |
parent | f7d6eb9ab66d829217fa808a3158b4759ffc9381 (diff) | |
download | nextcloud-server-5f1f6330c9eadb450e4ca3fe6b5fff58ca00238d.tar.gz nextcloud-server-5f1f6330c9eadb450e4ca3fe6b5fff58ca00238d.zip |
Show EOL warning in the update section
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-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 7b8b7073d6d..12e5236779e 100644 --- a/lib/private/Updater/VersionCheck.php +++ b/lib/private/Updater/VersionCheck.php @@ -96,6 +96,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(); } |