1
0
mirror of https://github.com/e107inc/e107.git synced 2025-03-13 08:59:44 +01:00

Update e_pluginbuilder_class.php

Fix for correct test of table name - mistypo
This commit is contained in:
Jimako 2024-09-25 22:42:39 +02:00 committed by GitHub
parent 347246d268
commit 5b89ccb4f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);