swapped the positions of the creator and the updator

This commit is contained in:
hyung-hwan 2016-09-08 11:41:10 +00:00
parent 765298afc1
commit 1a8b9ee893

View File

@ -1134,7 +1134,7 @@ function print_issue_state ($con, $issue, $old, $issue_type_array, $issue_status
if (strcmp($new->updatedby, $new->createdby) == 0) if (strcmp($new->updatedby, $new->createdby) == 0)
printf ('%s', htmlspecialchars($new->updatedby)); printf ('%s', htmlspecialchars($new->updatedby));
else else
printf ('%s (%s)', htmlspecialchars($new->updatedby), htmlspecialchars($new->createdby)); printf ('%s (%s)', htmlspecialchars($new->createdby), htmlspecialchars($new->updatedby));
print '</div>'; print '</div>';
print '<div class="codepot-issue-comment-actions">'; print '<div class="codepot-issue-comment-actions">';