From 1a8b9ee8931b93e77fc04dfac8b26012fc2a532e Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Thu, 8 Sep 2016 11:41:10 +0000 Subject: [PATCH] swapped the positions of the creator and the updator --- codepot/src/codepot/views/issue_show.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codepot/src/codepot/views/issue_show.php b/codepot/src/codepot/views/issue_show.php index a350e0d2..9a6eacc6 100644 --- a/codepot/src/codepot/views/issue_show.php +++ b/codepot/src/codepot/views/issue_show.php @@ -1134,7 +1134,7 @@ function print_issue_state ($con, $issue, $old, $issue_type_array, $issue_status if (strcmp($new->updatedby, $new->createdby) == 0) printf ('%s', htmlspecialchars($new->updatedby)); else - printf ('%s (%s)', htmlspecialchars($new->updatedby), htmlspecialchars($new->createdby)); + printf ('%s (%s)', htmlspecialchars($new->createdby), htmlspecialchars($new->updatedby)); print ''; print '
';