View | Details | Raw Unified | Return to bug 24643
Collapse All | Expand All

(-)a/Koha/DateUtils.pm (-2 / +1 lines)
Lines 117-123 sub dt_from_string { Link Here
117
            (?<minute>\d{2})
117
            (?<minute>\d{2})
118
            :
118
            :
119
            (?<second>\d{2})
119
            (?<second>\d{2})
120
            (([Zz])|([\+|\-]([01][0-9]|2[0-3]):[0-5][0-9]))
120
            (\.\d{1,3})?(([Zz])|([\+|\-]([01][0-9]|2[0-3]):[0-5][0-9]))
121
        /xms;
121
        /xms;
122
    }
122
    }
123
    elsif ( $date_format eq 'iso' or $date_format eq 'sql' ) {
123
    elsif ( $date_format eq 'iso' or $date_format eq 'sql' ) {
124
- 

Return to bug 24643