diff options
author | Joshua Slive <slive@apache.org> | 2001-01-24 18:14:18 +0000 |
---|---|---|
committer | Joshua Slive <slive@apache.org> | 2001-01-24 18:14:18 +0000 |
commit | d6b4931fb72123d3119a8b2796ccea22280ccf3c (patch) | |
tree | be1d50b4ec3e42c2a4d344043be0973c053883d0 /docs/manual/howto/ssi.html.en | |
parent | 6a27a17c557960e9ba86a076d273569dccf3151e (diff) | |
download | httpd-d6b4931fb72123d3119a8b2796ccea22280ccf3c.tar.gz |
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
Diffstat (limited to 'docs/manual/howto/ssi.html.en')
-rw-r--r-- | docs/manual/howto/ssi.html.en | 4 |
1 files changed, 2 insertions, 2 deletions
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</p> <h3><a name="today'sdate">Today's date</a></h3> <pre> - <!--#echo var=DATE_LOCAL --> + <!--#echo var="DATE_LOCAL" --> </pre> <p>The <code>echo</code> element just spits out the value of a @@ -236,7 +236,7 @@ attribute, to modify that formatting.</p> <pre> <!--#config timefmt="%A %B %d, %Y" --> - Today is <!--#echo var=DATE_LOCAL --> + Today is <!--#echo var="DATE_LOCAL" --> </pre> <h3><a name="modificationdateofthefile">Modification date of the |