fanf 00/10/24 12:09:57
Modified: htdocs/manual/misc custom_errordocs.html Log: Fix SSI syntax errors -- strings inside #if test expressions are either bare or in single quotes, not double quotes. PR: 6736 Revision Changes Path 1.7 +3 -3 httpd-docs-2.0/htdocs/manual/misc/custom_errordocs.html Index: custom_errordocs.html =================================================================== RCS file: /home/cvs/httpd-docs-2.0/htdocs/manual/misc/custom_errordocs.html,v retrieving revision 1.6 retrieving revision 1.7 diff -u -u -r1.6 -r1.7 --- custom_errordocs.html 1998/09/17 14:14:52 1.6 +++ custom_errordocs.html 2000/10/24 19:09:55 1.7 @@ -303,7 +303,7 @@ variable within an error document: </P> <PRE> - <!--#if expr="\"$REDIRECT_ERROR_NOTES\" = \"\"" --> + <!--#if expr="$REDIRECT_ERROR_NOTES = ''" --> <p> The server encountered an unexpected condition which prevented it from fulfilling the request. @@ -340,7 +340,7 @@ modifications. </P> <P> - <!--#if expr="\"$HTTP_REFERER\" != \"\"" --> + <!--#if expr="$HTTP_REFERER != ''" --> Please inform the owner of <A HREF="<!--#echo var="HTTP_REFERER" -->">the referring page</A> about the malformed link. @@ -361,7 +361,7 @@ of the form <BR><CODE>BrowserMatch "^Mozilla/[2-4]" anigif</CODE><BR> for browser types which support animated GIFs). <HR><PRE> -<!--#if expr="\"$SERVER_NAME\" = /.*\.mycompany\.com/" +<!--#if expr="$SERVER_NAME = /.*\.mycompany\.com/" --><!--#set var="IMG_CorpLogo" value="http://$SERVER_NAME:$SERVER_PORT/errordocs/CorpLogo.gif" --><!--#set var="ALT_CorpLogo" value="Powered by Linux!"