Skip to content

Commit 2802a78

Browse files
committed
fix(issue): more consistent status display for status of issues
Signed-off-by: btry <tbugier@teclib.com>
1 parent 34ae3bf commit 2802a78

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

inc/form_answer.class.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,8 @@ public static function getSpecificValueToDisplay($field, $values, array $options
269269
switch ($field) {
270270
case 'status' :
271271
$output = '<img src="' . $CFG_GLPI['root_doc'] . '/plugins/formcreator/pics/' . $values[$field] . '.png"
272-
alt="' . __($values[$field], 'formcreator') . '" title="' . __($values[$field], 'formcreator') . '" />';
272+
alt="' . __($values[$field], 'formcreator') . '" title="' . __($values[$field], 'formcreator') . '" /> '
273+
. __($values[$field], 'formcreator');
273274
return $output;
274275
break;
275276
}

0 commit comments

Comments
 (0)