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
No related branches found
No related tags found
No related merge requests found
......@@ -61,13 +61,13 @@ function(head, req) {
def["@standard"] = std;
def["@mpname"] = mp;
def["@devicename"] = dn;
def["@time"] = d.getTime();
def["@hour"] = share.pad0(d.getHours());
def["@minute"] = share.pad0(d.getMinutes());
def["@month"] = share.pad0(d.getMonth() + 1);
def["@second"] = share.pad0(d.getSeconds() + 1);
def["@day"] = d.getDate();
def["@year"] = d.getFullYear();
def["@time"] = "" + d.getTime();
def["@hour"] = "" + share.pad0(d.getHours());
def["@minute"] = "" + share.pad0(d.getMinutes());
def["@month"] = "" + share.pad0(d.getMonth() + 1);
def["@second"] = "" + share.pad0(d.getSeconds() + 1);
def["@day"] = "" + share.pad0(d.getDate());
def["@year"] = "" + d.getFullYear();
def["@cdids"] = idArr;
// 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