diff options
author | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-05-02 13:10:03 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-05-02 13:10:03 +0200 |
commit | 211e518e166305d2183b04515f9dbaaf0ab5e997 (patch) | |
tree | 9416e8ae4fc6d334df629a7ae10d89e8f3f11106 | |
parent | b8650be73295336b74a606e3bc567a13e81cfc83 (diff) | |
download | nextcloud-server-211e518e166305d2183b04515f9dbaaf0ab5e997.tar.gz nextcloud-server-211e518e166305d2183b04515f9dbaaf0ab5e997.zip |
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); } |