Skip to content
Snippets Groups Projects
Commit 62256b37 authored by Thomas Bock's avatar Thomas Bock :speech_balloon:
Browse files

str and pad task default probs

parent deaa8722
Branches master
No related tags found
No related merge requests found
...@@ -61,13 +61,13 @@ function(head, req) { ...@@ -61,13 +61,13 @@ function(head, req) {
def["@standard"] = std; def["@standard"] = std;
def["@mpname"] = mp; def["@mpname"] = mp;
def["@devicename"] = dn; def["@devicename"] = dn;
def["@time"] = d.getTime(); def["@time"] = "" + d.getTime();
def["@hour"] = share.pad0(d.getHours()); def["@hour"] = "" + share.pad0(d.getHours());
def["@minute"] = share.pad0(d.getMinutes()); def["@minute"] = "" + share.pad0(d.getMinutes());
def["@month"] = share.pad0(d.getMonth() + 1); def["@month"] = "" + share.pad0(d.getMonth() + 1);
def["@second"] = share.pad0(d.getSeconds() + 1); def["@second"] = "" + share.pad0(d.getSeconds() + 1);
def["@day"] = d.getDate(); def["@day"] = "" + share.pad0(d.getDate());
def["@year"] = d.getFullYear(); def["@year"] = "" + d.getFullYear();
def["@cdids"] = idArr; def["@cdids"] = idArr;
// Defaults um Replaces erweitern // Defaults um Replaces erweitern
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment