From: Joshua Slive Date: Wed, 24 Jan 2001 18:14:18 +0000 (+0000) Subject: Attributes should be quoted. X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~110 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d6b4931fb72123d3119a8b2796ccea22280ccf3c;p=thirdparty%2Fapache%2Fhttpd.git Attributes should be quoted. PR: 7122 Submitted by: Kohei Watanabe git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87818 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/manual/howto/ssi.html b/docs/manual/howto/ssi.html index 0bd2a1f8bcd..d804733738b 100644 --- a/docs/manual/howto/ssi.html +++ b/docs/manual/howto/ssi.html @@ -221,7 +221,7 @@ now, here are some examples of what you can do with SSI

Today's date

-        <!--#echo var=DATE_LOCAL -->
+        <!--#echo var="DATE_LOCAL" -->
 

The echo element just spits out the value of a @@ -236,7 +236,7 @@ attribute, to modify that formatting.

         <!--#config timefmt="%A %B %d, %Y" -->
-        Today is <!--#echo var=DATE_LOCAL -->
+        Today is <!--#echo var="DATE_LOCAL" -->
 

Modification date of the diff --git a/docs/manual/howto/ssi.html.en b/docs/manual/howto/ssi.html.en index 0bd2a1f8bcd..d804733738b 100644 --- a/docs/manual/howto/ssi.html.en +++ b/docs/manual/howto/ssi.html.en @@ -221,7 +221,7 @@ now, here are some examples of what you can do with SSI

Today's date

-        <!--#echo var=DATE_LOCAL -->
+        <!--#echo var="DATE_LOCAL" -->
 

The echo element just spits out the value of a @@ -236,7 +236,7 @@ attribute, to modify that formatting.

         <!--#config timefmt="%A %B %d, %Y" -->
-        Today is <!--#echo var=DATE_LOCAL -->
+        Today is <!--#echo var="DATE_LOCAL" -->
 

Modification date of the