mirror of
https://github.com/e107inc/e107.git
synced 2025-08-05 22:27:34 +02:00
Fix for PHP Notice Undefined index: userjump, Line 670 of /e107_handlers/e107_class.php
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user