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