Skip to content

Commit

Permalink
Deleted weeks precision
Browse files Browse the repository at this point in the history
  • Loading branch information
dima767 committed Jun 1, 2009
1 parent dd425e2 commit 0749e08
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion grails-app/taglib/NiceDateTagLib.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ class NiceDateTagLib {
def output = ''
if(y > 0) output += "$y " + "year" + (y > 1 ? "s " : " ")
if(m > 0) output += "$m " + "month" + (m > 1 ? "s " : " ")
if(w > 0) output += "$w " + "week" + (w > 1 ? "s " : " ")
if(d > 0) output += "$d " + "day" + (d > 1 ? "s " : " ")
if(h > 0) output += "$h " + "hour" + (h > 1 ? "s " : " ")
if(mi > 0) output += "$mi " + "minute" + (mi > 1 ? "s " : " ")
Expand Down

0 comments on commit 0749e08

Please sign in to comment.