diff --git a/codepot/src/codepot/views/issue_show.php b/codepot/src/codepot/views/issue_show.php index fe33147d..a350e0d2 100644 --- a/codepot/src/codepot/views/issue_show.php +++ b/codepot/src/codepot/views/issue_show.php @@ -1131,7 +1131,10 @@ function print_issue_state ($con, $issue, $old, $issue_type_array, $issue_status print '
'; //$user_icon_url = codepot_merge_path (site_url(), '/user/icon/' . $this->converter->AsciiToHex($new->updatedby)); //print " "; - print htmlspecialchars($new->updatedby); + if (strcmp($new->updatedby, $new->createdby) == 0) + printf ('%s', htmlspecialchars($new->updatedby)); + else + printf ('%s (%s)', htmlspecialchars($new->updatedby), htmlspecialchars($new->createdby)); print '
'; print '
';