diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-05-02 14:32:40 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-05-02 14:32:40 +0200 |
commit | 953ebb0584f41d781a06e5dbc6ca072adbb0961f (patch) | |
tree | fcd36d137593f56e95c43d47ccdeac4d0b52bdda | |
parent | d7eb17bdc023c6e31d24a0636e0f5cad58aa876f (diff) | |
parent | 211e518e166305d2183b04515f9dbaaf0ab5e997 (diff) | |
download | nextcloud-server-953ebb0584f41d781a06e5dbc6ca072adbb0961f.tar.gz nextcloud-server-953ebb0584f41d781a06e5dbc6ca072adbb0961f.zip |
Merge pull request #24385 from owncloud/DeepDiver1975-patch-1
Fix undefined variable $ex
-rw-r--r-- | remote.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote.php b/remote.php index 991ca0d2302..f28c3a35691 100644 --- a/remote.php +++ b/remote.php @@ -166,5 +166,5 @@ try { } catch (Exception $ex) { handleException($ex); } catch (Error $e) { - handleException($ex); + handleException($e); } |