Skip to content

Commit

Permalink
Saving log with proper date to cache
Browse files Browse the repository at this point in the history
  • Loading branch information
carnero committed Jun 24, 2011
1 parent edce4ef commit aea788f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/carnero/cgeo/cgeovisit.java
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,7 @@ public int postLogFn(String log) {
if (status == 1) {
cgLog logNow = new cgLog();
logNow.author = settings.getUsername();
logNow.date = (new Date()).getTime();
logNow.date = date.getTimeInMillis();
logNow.type = typeSelected;
logNow.log = log;

Expand Down

0 comments on commit aea788f

Please sign in to comment.