Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 1e8c793d

Přidáno uživatelem Michal Kliment před více než 9 roky(ů)

Release 1.1.8

Zobrazit rozdíly:

application/controllers/fees.php
$arr_from = date_parse_from_format(DateTime::ISO8601, $this->input->post('from'));
$arr_to = date_parse_from_format(DateTime::ISO8601, $this->input->post('to'));
$date_from = date::round_month($arr_from['day'], $arr_from['month'], $arr_from['year']);
$date_to = date::round_month($arr_to['day'], $arr_to['month'], $arr_to['year']);
// handle 9999-12-31 (#956)
if ($arr_to['year'] == 9999 && $arr_to['month'] == 12 && $arr_to['day'] == 31)
{
$date_to = '9999-12-31';
}
else
{
$date_to = date::round_month($arr_to['day'], $arr_to['month'], $arr_to['year']);
}
$diff = date::diff_month($date_to, $date_from);
if ($diff < 0)

Také k dispozici: Unified diff