Add a try catch block

This function might also be called before ownCloud is setup which results in a PHP fatal error. We therefore should gracefully catch errors in there.
This commit is contained in:
Lukas Reschke 2014-10-16 21:45:09 +02:00
parent 1ebeb6792e
commit 53e0cf2f74
1 changed files with 10 additions and 6 deletions

View File

@ -1101,6 +1101,7 @@ class OC_App {
return $versions; // when function is used besides in checkUpgrade
}
$versions = array();
try {
$query = OC_DB::prepare('SELECT `appid`, `configvalue` FROM `*PREFIX*appconfig`'
. ' WHERE `configkey` = \'installed_version\'');
$result = $query->execute();
@ -1108,6 +1109,9 @@ class OC_App {
$versions[$row['appid']] = $row['configvalue'];
}
return $versions;
} catch (\Exception $e) {
return array();
}
}