ASTE#37915 Terugdraaien enkele aanpassingen

svn path=/Website/trunk/; revision=33206
This commit is contained in:
2017-03-22 09:03:49 +00:00
parent 1d8cefa94f
commit 041aae9b72
2 changed files with 3 additions and 4 deletions

View File

@@ -31,7 +31,6 @@
<!-- #include file="../Shared/resultset_table_v2.inc" --> <!-- #include file="../Shared/resultset_table_v2.inc" -->
<!-- #include file="./res.inc" --> <!-- #include file="./res.inc" -->
<!-- #include file="../Shared/getkenmerksql.inc" --> <!-- #include file="../Shared/getkenmerksql.inc" -->
<!-- #include file="../Shared/Shared.inc" -->
<% <%
FCLTHeader.Requires({ plugins:["jQuery"], FCLTHeader.Requires({ plugins:["jQuery"],

View File

@@ -756,7 +756,7 @@ function convertTimeZone(thisDate, fromTZ, toTZ)
// <20> never as part of a computation. // <20> never as part of a computation.
function toTimeString(jsDate, bWithSeconds, converted) function toTimeString(jsDate, bWithSeconds, converted)
{ {
if (jsDate==null) if (jsDate===null)
return ""; return "";
if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/) if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/)
@@ -792,7 +792,7 @@ function toDateString(jsDate, noDay, pretty, converted)
var tomorrow = (new Date(today)); var tomorrow = (new Date(today));
tomorrow.setDate(today.getDate()+1); tomorrow.setDate(today.getDate()+1);
if (jsDate==null) if (jsDate===null)
return ""; return "";
if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/) if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/)
@@ -825,7 +825,7 @@ function toDateString(jsDate, noDay, pretty, converted)
} }
function toDateTimeString(jsDate, bWithSeconds, noDay, prettyday) function toDateTimeString(jsDate, bWithSeconds, noDay, prettyday)
{ {
if (jsDate==null) if (jsDate===null)
return ""; return "";
if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/) if (typeof jsDate == "object" && jsDate.type == 135/*adDBTimeStamp, oRs("datum")*/)