From ad5d022f95c29b8b22f031c321f28fcc0cd99b48 Mon Sep 17 00:00:00 2001 From: Bartek Fabiszewski Date: Mon, 17 Feb 2020 12:54:10 +0100 Subject: [PATCH] Fix typo --- utils/import.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/import.php b/utils/import.php index 9fb1cce..737f999 100644 --- a/utils/import.php +++ b/utils/import.php @@ -49,7 +49,7 @@ try { uUtils::exitWithError($message); } catch (Exception $e) { $message = $lang["iuploadfailure"]; - $message .= ": {$ee->getMessage()}"; + $message .= ": {$e->getMessage()}"; uUtils::exitWithError($message); }