Skip to content

Commit

Permalink
fix(formanswer): use of in static method
Browse files Browse the repository at this point in the history
Signed-off-by: Thierry Bugier <[email protected]>
  • Loading branch information
btry committed Feb 7, 2020
1 parent 66f1af3 commit bb0ff99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inc/formanswer.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,7 @@ public static function getSpecificValueToSelect($field, $name = '', $values = ''

switch ($field) {
case 'status' :
$elements = $this->getStatuses();
$elements = self::getStatuses();
$output = Dropdown::showFromArray($name, $elements, ['display' => false, 'value' => $values[$field]]);
return $output;
break;
Expand Down

0 comments on commit bb0ff99

Please sign in to comment.