<% SysLog.sysmgr_object %> |
function renders the name of the object affected |
Sourcecode in SysLog/sysmgr_macros.js:
1: function sysmgr_object_macro(param) { 2: // this macro is allowed just for sysadmins 3: if (!session.user.sysadmin) 4: return; 5: if (!this.object) 6: return; 7: res.write(this.object); 8: return; 9: } |