From 5b89ccb4f7c7dd33bebc25ebe9dc5fd4824f2479 Mon Sep 17 00:00:00 2001 From: Jimako Date: Wed, 25 Sep 2024 22:42:39 +0200 Subject: [PATCH] Update e_pluginbuilder_class.php Fix for correct test of table name - mistypo --- e107_handlers/e_pluginbuilder_class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_handlers/e_pluginbuilder_class.php b/e107_handlers/e_pluginbuilder_class.php index 283e650a98..9cf3cf69ca 100644 --- a/e107_handlers/e_pluginbuilder_class.php +++ b/e107_handlers/e_pluginbuilder_class.php @@ -1966,7 +1966,7 @@ class " . $pluginFolder . "_adminArea extends e_admin_dispatcher $vars['mode'] = $tp->filter($vars['mode']); $vars['pluginName'] = $tp->filter($vars['pluginName']); - $vars['table'] = !empty($var['table']) ? $tp->filter($vars['table']) : ''; + $vars['table'] = !empty($vars['table']) ? $tp->filter($vars['table']) : ''; $vars['pid'] = $tp->filter($vars['pid']); $FIELDS = $this->buildAdminUIFields($vars);