Skip to content

Commit 5e3769b

Browse files
committed
[BUGFIX] Save log message as is without calling strip_tags
With calling strip_tags log messages which accidentally contained "<" and ">" (e.g. in a formula) had been saved incomplete. Resolves #4
1 parent a6a8d9c commit 5e3769b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/Utility/Logger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ public function log($logData)
123123
$this->counter++;
124124
$entry->setCrdate(time());
125125
$entry->setMessage(
126-
strip_tags($logData['msg'])
126+
$logData['msg']
127127
);
128128
$entry->setExtkey(
129129
strip_tags($logData['extKey'])

0 commit comments

Comments
 (0)