From: Christophe Jaillet Date: Thu, 18 Dec 2014 06:57:38 +0000 (+0000) Subject: Fix example as spotted in a comment in online doc. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=187d7f895c4e4806e50a2a74085c2a669cbd619f;p=thirdparty%2Fapache%2Fhttpd.git Fix example as spotted in a comment in online doc. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1646392 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/ssi.html.en b/docs/manual/howto/ssi.html.en index 2140cb1beca..f44a6c47bc2 100644 --- a/docs/manual/howto/ssi.html.en +++ b/docs/manual/howto/ssi.html.en @@ -443,7 +443,7 @@ modified?

Good - <!--#if expr="%{TIME_HOUR} >=12" -->
+ <!--#if expr="%{TIME_HOUR} <12" -->
morning!
<!--#else -->
afternoon!
diff --git a/docs/manual/howto/ssi.xml b/docs/manual/howto/ssi.xml index dd2d2f70309..776b7df9cfa 100644 --- a/docs/manual/howto/ssi.xml +++ b/docs/manual/howto/ssi.xml @@ -451,7 +451,7 @@ modified? Good - <!--#if expr="%{TIME_HOUR} >=12" -->
+ <!--#if expr="%{TIME_HOUR} <12" -->
morning!
<!--#else -->
afternoon!