Skip to content

Commit

Permalink
FIXED: month should be from 1-12
Browse files Browse the repository at this point in the history
  • Loading branch information
jhuangsoftware committed Dec 12, 2014
1 parent faa1d0f commit 6cf6cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/last-modified-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ LastModifiedReport.prototype.FormatDateTime = function(InputDateTime){
// format date time into MM/DD/YYYY TTTT
var RetDateTime = "";

var Month = InputDateTime.getMonth();
var Month = InputDateTime.getMonth() + 1;
var Date = InputDateTime.getDate();
var Year = InputDateTime.getFullYear();

Expand Down

0 comments on commit 6cf6cda

Please sign in to comment.