Browse Source

Small fix in reltimesince formatter

Ralfp 12 years ago
parent
commit
68b7d307d4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      misago/utils/datesformats.py

+ 1 - 1
misago/utils/datesformats.py

@@ -76,7 +76,7 @@ def reltimesince(val, arg=""):
         if diff.seconds <= 5:
             return _("Just now")
                         
-        if diff.seconds < 3600:
+        if diff.seconds < 3540:
             minutes = int(math.ceil(diff.seconds / 60.0))
             return ungettext(
                     "Minute ago",