diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-10-20 19:38:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-20 19:38:41 +0200 |
commit | 4c41ff11ac90a0a205cdfa8802d10a0f488a0cd5 (patch) | |
tree | c3bee50aed88326f7f672dad59656f5c11eaf4bb | |
parent | e5598e492fa08533a21babb40beaf8eaa435875a (diff) | |
parent | 9963bdaeb907eae4381625e4dc97dc405a0fad40 (diff) | |
download | nextcloud-server-4c41ff11ac90a0a205cdfa8802d10a0f488a0cd5.tar.gz nextcloud-server-4c41ff11ac90a0a205cdfa8802d10a0f488a0cd5.zip |
Merge pull request #1817 from nextcloud/oc_nus
Expose the needupgrade status (#26209)
-rw-r--r-- | status.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/status.php b/status.php index a4749bd8b5d..3d2d8f59d75 100644 --- a/status.php +++ b/status.php @@ -41,6 +41,7 @@ try { $values=array( 'installed'=>$installed, 'maintenance' => $maintenance, + 'needsDbUpgrade' => \OCP\Util::needUpgrade(), 'version'=>implode('.', \OCP\Util::getVersion()), 'versionstring'=>OC_Util::getVersionString(), 'edition'=> '', |