czukowski / I18n_Plural

I18n module for grammatically correct plural inflections, and maybe even some extra features related to i18n.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Problem with date formating

opened this issue · comments

Problem is in line 75 in file date.php

$delta = round($delta);

$delta must be a integer, not float.

$delta = (int) round($delta);

Fixed, thank you.