Skip to content

Commit

Permalink
fix(question_condition): unable to use some comparisons
Browse files Browse the repository at this point in the history
Signed-off-by: Thierry Bugier <tbugier@teclib.com>
  • Loading branch information
btry committed May 24, 2019
1 parent 2cdea2f commit fad48aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/question.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ public function updateConditions($input) {
$order++;
$value = array_shift($input['show_value']);
$showField = (int) array_shift($input['show_field']);
$showCondition = array_shift($input['show_condition']);
$showCondition = html_entity_decode(array_shift($input['show_condition']));
$showLogic = array_shift($input['show_logic']);
$question_condition = new PluginFormcreatorQuestion_Condition();
$question_condition->add([
Expand Down

0 comments on commit fad48aa

Please sign in to comment.