diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-10-25 15:33:45 +0200 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-10-25 15:41:59 +0200 |
commit | b6c67c4c63206e19975655f0326bc320faa30f9a (patch) | |
tree | 109b00f7166aaaf03eec18c8981a5806dcfa5642 /lib/private/installer.php | |
parent | a555e00e2cb2862211fa87e7b3351bab7d94c8bf (diff) | |
download | nextcloud-server-b6c67c4c63206e19975655f0326bc320faa30f9a.tar.gz nextcloud-server-b6c67c4c63206e19975655f0326bc320faa30f9a.zip |
'Update to' is shown when there is no update
See #4716
Diffstat (limited to 'lib/private/installer.php')
-rw-r--r-- | lib/private/installer.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/installer.php b/lib/private/installer.php index e082c7eeee9..5b6a8c9b99f 100644 --- a/lib/private/installer.php +++ b/lib/private/installer.php @@ -275,11 +275,11 @@ class OC_Installer{ return($ocsversion); }else{ - return(''); + return false; } }else{ - return(''); + return false; } } |