antville/code/SysLog/macros.js
Robert Gaggl cb35759bd0 changed code to run with snapshot 20020531-fc:
- removed explicit writing of prefix and suffix to response-object (helma's doing that from now on)
2002-06-02 16:05:16 +00:00

7 lines
No EOL
183 B
JavaScript

/**
* function renders the createtime of this log-entry
*/
function createtime_macro(param) {
res.write(param.format ? this.createtime.format(param.format) : this.createtime);
}