Skip to content
Snippets Groups Projects
Unverified Commit 6ba1d9b2 authored by weaver299's avatar weaver299 Committed by GitHub
Browse files

Merge pull request #201 from ASCWebServices/canini

fixing date replacement bug
parents 4d9bbc09 2d742d9a
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,7 @@ jQuery(document).ready(function(){
twoDigitMonth = fullDate.getMonth()+1;
if(twoDigitMonth <= 9) {
twoDigitMonth = '0' + fullDate.getMonth()+1;
twoDigitMonth = '0' + twoDigitMonth;
}
var currentDate = twoDigitMonth + "/" + fullDate.getDate() + "/" + fullDate.getFullYear();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment