From 211e518e166305d2183b04515f9dbaaf0ab5e997 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Mon, 2 May 2016 13:10:03 +0200 Subject: [PATCH] Fix undefined variable $ex --- remote.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote.php b/remote.php index 991ca0d230..f28c3a3569 100644 --- a/remote.php +++ b/remote.php @@ -166,5 +166,5 @@ try { } catch (Exception $ex) { handleException($ex); } catch (Error $e) { - handleException($ex); + handleException($e); }