Module:Date Stuff: Difference between revisions

no edit summary
No edit summary
No edit summary
Line 57: Line 57:
    
    
   date = {month, day, year}
   date = {month, day, year}
  --Takes the text month variable and adds it to the day and year variable with a comma
  date = date[1].." "..date[2]..", "..date[3]
    
    
   return date
   return date
Line 70: Line 73:
   date = convertDate(date)
   date = convertDate(date)


  --Takes the text month variable and adds it to the day and year variable with a comma
  date = date[1].." "..date[2]..", "..date[3]
   return date
   return date
end
end