Skip to content

Commit

Permalink
[BugFix] Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cashlalala committed Nov 23, 2014
1 parent 911bac9 commit d87873a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/casemgmt/Frm_Case.java
Original file line number Diff line number Diff line change
Expand Up @@ -1672,10 +1672,10 @@ private void saveCase(String finished) {
}

String sql = String.format(
"upadte case_manage set status = '%s', close_time = NOW() %s "
"update case_manage set status = '%s', close_time = NOW() %s "
+ "where guid = '%s'", finished,
(finished.equalsIgnoreCase("C") ? ",close_reason = '"
+ closeReason + "' " : ""));
+ closeReason + "' " : ""), caseGuid);

logger.debug("[{}][{}] {}", UserInfo.getUserID(),
UserInfo.getUserName(), sql);
Expand Down

0 comments on commit d87873a

Please sign in to comment.