Browse Source

Don't throw 500 when not installed

pull/1284/head
Joas Schilling 10 years ago
parent
commit
bbc5fbe8c4
No known key found for this signature in database GPG Key ID: E166FD8976B3BAC8
  1. 2
      status.php

2
status.php

@ -43,7 +43,7 @@ try {
'maintenance' => $maintenance,
'version'=>implode('.', \OCP\Util::getVersion()),
'versionstring'=>OC_Util::getVersionString(),
'edition'=>OC_Util::getEditionString(),
'edition'=> $installed ? OC_Util::getEditionString() : '',
'productname'=>$defaults->getName());
if (OC::$CLI) {
print_r($values);

Loading…
Cancel
Save