Update version dates.

Fix a small typo in Lua example: nil, not null.
This commit is contained in:
brectanus 2008-02-14 22:16:21 +00:00
parent fb9585735a
commit 8cf74f5c91
2 changed files with 7 additions and 5 deletions

View File

@ -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++.

View File

@ -3,7 +3,7 @@
<title>ModSecurity Reference Manual</title>
<articleinfo>
<releaseinfo>Version 2.5.0-rc4 (February 13, 2008)</releaseinfo>
<releaseinfo>Version 2.5.0-rc4 (February 14, 2008)</releaseinfo>
<copyright>
<year>2004-2008</year>
@ -1906,8 +1906,8 @@ function main()
-- of the variable where the problem is located.
-- return "Variable ARGS:p looks suspicious!"
-- Otherwise, simply return null.
return null;
-- Otherwise, simply return nil.
return nil;
end</programlisting>
<para>In this first example we were only retrieving one variable at the
@ -1933,7 +1933,7 @@ end</programlisting>
end
-- Nothing wrong found.
return null;
return nil;
end</programlisting>
<note>