Skip to content

Commit 86b5a10

Browse files
committed
fix(question): filtering out tag question type broken
1 parent 5508dc3 commit 86b5a10

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/fields.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public static function getNames() {
7676
foreach (array_keys($tab_field_types) as $field_type) {
7777
$classname = 'PluginFormcreator' . ucfirst($field_type) . 'Field';
7878

79-
if ($classname == 'tagField' &&(!$plugin->isInstalled('tag') || !$plugin->isActivated('tag'))) {
79+
if ($classname == 'PluginFormcreatorTagField' && !$plugin->isActivated('tag')) {
8080
continue;
8181
}
8282

0 commit comments

Comments
 (0)