http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11703
M3ntoR <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #191 from M3ntoR <[email protected]> --- Fix for red highlighting for overdue items file checkouts.js: In tag $("#issues-table").dataTable... date form mySQL database is not parsed. Quick fix for it is change var due = new Date( oObj.date_due ) into var t = oObj.date_due.split(/[- :]/); var due = new Date(t[0], t[1]-1, t[2], t[3], t[4], t[5]); -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
