From 67511a084f8bc47ad025fc27f66f20f8495995c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=B3na=20Lore?= Date: Sun, 10 Dec 2017 12:03:48 +0100 Subject: [PATCH] Fix for PHP Notice Undefined index: userjump, Line 670 of /e107_handlers/e107_class.php --- e107_handlers/e107_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/e107_class.php b/e107_handlers/e107_class.php index c64033399..bab439e13 100644 --- a/e107_handlers/e107_class.php +++ b/e107_handlers/e107_class.php @@ -667,7 +667,7 @@ class e107 { if(null === $data) { - if(is_object(self::$_registry[$id]) && method_exists(self::$_registry[$id], '__destruct')) + if(isset(self::$_registry[$id]) && is_object(self::$_registry[$id]) && method_exists(self::$_registry[$id], '__destruct')) { self::$_registry[$id]->__destruct(); }