Merge pull request #9651 from nextcloud/backport/9271/stable13
[stable13] Fix undefined variables
This commit is contained in:
commit
5c9f2dd99f
|
@ -774,7 +774,7 @@ class DAV extends Common {
|
|||
if ($response === false) {
|
||||
if ($path === '') {
|
||||
// if root is gone it means the storage is not available
|
||||
throw new StorageNotAvailableException(get_class($e) . ': ' . $e->getMessage());
|
||||
throw new StorageNotAvailableException('root is gone');
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -149,9 +149,7 @@ class Installer {
|
|||
}
|
||||
|
||||
//run appinfo/install.php
|
||||
if((!isset($data['noinstall']) or $data['noinstall']==false)) {
|
||||
self::includeAppScript($basedir . '/appinfo/install.php');
|
||||
}
|
||||
self::includeAppScript($basedir . '/appinfo/install.php');
|
||||
|
||||
$appData = OC_App::getAppInfo($appId);
|
||||
OC_App::executeRepairSteps($appId, $appData['repair-steps']['install']);
|
||||
|
|
Loading…
Reference in New Issue