Skip to content

Commit bb0ff99

Browse files
committed
fix(formanswer): use of in static method
Signed-off-by: Thierry Bugier <[email protected]>
1 parent 66f1af3 commit bb0ff99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/formanswer.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ public static function getSpecificValueToSelect($field, $name = '', $values = ''
330330

331331
switch ($field) {
332332
case 'status' :
333-
$elements = $this->getStatuses();
333+
$elements = self::getStatuses();
334334
$output = Dropdown::showFromArray($name, $elements, ['display' => false, 'value' => $values[$field]]);
335335
return $output;
336336
break;

0 commit comments

Comments
 (0)