mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-16 07:56:12 +03:00
Fix TX dictionary element name on logs
Before this patch the element name was not being shown.
This commit is contained in:
parent
5f60bb5224
commit
4d03ef512e
@ -33,7 +33,7 @@ namespace Variables {
|
|||||||
class Tx_DictElement : public Variable {
|
class Tx_DictElement : public Variable {
|
||||||
public:
|
public:
|
||||||
explicit Tx_DictElement(std::string dictElement)
|
explicit Tx_DictElement(std::string dictElement)
|
||||||
: Variable("TX"),
|
: Variable("TX:" + dictElement),
|
||||||
m_dictElement("TX:" + dictElement) { }
|
m_dictElement("TX:" + dictElement) { }
|
||||||
|
|
||||||
void evaluate(Transaction *transaction,
|
void evaluate(Transaction *transaction,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user