Index: t3lib/jsfunc.evalfield.js =================================================================== --- t3lib/jsfunc.evalfield.js (revision 4679) +++ t3lib/jsfunc.evalfield.js (working copy) @@ -471,7 +471,7 @@ } // Seconds since midnight: function evalFunc_getTime(timeObj) { - return timeObj.getUTCHours()*60*60+timeObj.getUTCMinutes()*60+Math.round(timeObj.getUTCSeconds()/1000); + return timeObj.getUTCHours() * 60 * 60 + timeObj.getUTCMinutes() * 60 + timeObj.getUTCSeconds(); } function evalFunc_getYear(timeObj) { return timeObj.getUTCFullYear();