Merge pull request #24385 from owncloud/DeepDiver1975-patch-1

Fix undefined variable $ex
This commit is contained in:
Thomas Müller 2016-05-02 14:32:40 +02:00
commit 953ebb0584
1 changed files with 1 additions and 1 deletions

View File

@ -166,5 +166,5 @@ try {
} catch (Exception $ex) {
handleException($ex);
} catch (Error $e) {
handleException($ex);
handleException($e);
}