Skip to content

Commit

Permalink
Update e_pluginbuilder_class.php
Browse files Browse the repository at this point in the history
Fix for correct test of table name - mistypo
  • Loading branch information
Jimmi08 authored Sep 25, 2024
1 parent 347246d commit 5b89ccb
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 5b89ccb

Please sign in to comment.