Skip to content

Commit

Permalink
Merge pull request #5344 from Jimmi08/patch-4
Browse files Browse the repository at this point in the history
Fix for correct test of table name in plugin-builder
  • Loading branch information
CaMer0n authored Dec 19, 2024
2 parents c51c2f3 + 5b89ccb commit 7c6cad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e107_handlers/e_pluginbuilder_class.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7c6cad7

Please sign in to comment.