From d6b4931fb72123d3119a8b2796ccea22280ccf3c Mon Sep 17 00:00:00 2001 From: Joshua Slive Date: Wed, 24 Jan 2001 18:14:18 +0000 Subject: [PATCH] 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 --- docs/manual/howto/ssi.html | 4 ++-- docs/manual/howto/ssi.html.en | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/manual/howto/ssi.html b/docs/manual/howto/ssi.html index 0bd2a1f8bc..d804733738 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 0bd2a1f8bc..d804733738 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