mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
Update version dates.
Fix a small typo in Lua example: nil, not null.
This commit is contained in:
parent
fb9585735a
commit
8cf74f5c91
4
CHANGES
4
CHANGES
@ -1,6 +1,8 @@
|
|||||||
13 Feb 2008 - 2.5.0-rc4
|
14 Feb 2008 - 2.5.0-rc4
|
||||||
-----------------------
|
-----------------------
|
||||||
|
|
||||||
|
* Cleaned up build process for unit tests.
|
||||||
|
|
||||||
* Updated code to be more portable so it builds with MS VC++.
|
* Updated code to be more portable so it builds with MS VC++.
|
||||||
|
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
<title>ModSecurity Reference Manual</title>
|
<title>ModSecurity Reference Manual</title>
|
||||||
|
|
||||||
<articleinfo>
|
<articleinfo>
|
||||||
<releaseinfo>Version 2.5.0-rc4 (February 13, 2008)</releaseinfo>
|
<releaseinfo>Version 2.5.0-rc4 (February 14, 2008)</releaseinfo>
|
||||||
|
|
||||||
<copyright>
|
<copyright>
|
||||||
<year>2004-2008</year>
|
<year>2004-2008</year>
|
||||||
@ -1906,8 +1906,8 @@ function main()
|
|||||||
-- of the variable where the problem is located.
|
-- of the variable where the problem is located.
|
||||||
-- return "Variable ARGS:p looks suspicious!"
|
-- return "Variable ARGS:p looks suspicious!"
|
||||||
|
|
||||||
-- Otherwise, simply return null.
|
-- Otherwise, simply return nil.
|
||||||
return null;
|
return nil;
|
||||||
end</programlisting>
|
end</programlisting>
|
||||||
|
|
||||||
<para>In this first example we were only retrieving one variable at the
|
<para>In this first example we were only retrieving one variable at the
|
||||||
@ -1933,7 +1933,7 @@ end</programlisting>
|
|||||||
end
|
end
|
||||||
|
|
||||||
-- Nothing wrong found.
|
-- Nothing wrong found.
|
||||||
return null;
|
return nil;
|
||||||
end</programlisting>
|
end</programlisting>
|
||||||
|
|
||||||
<note>
|
<note>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user