diff options
-rwxr-xr-x | httpd/cgi-bin/check | 5 | ||||
-rw-r--r-- | share/templates/en_US/error_messages.cfg | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/httpd/cgi-bin/check b/httpd/cgi-bin/check index 73511cd..60346fe 100755 --- a/httpd/cgi-bin/check +++ b/httpd/cgi-bin/check @@ -14,7 +14,7 @@ # This source code is available under the license at: # http://www.w3.org/Consortium/Legal/copyright-software # -# $Id: check,v 1.524 2007-05-22 06:45:16 ot Exp $ +# $Id: check,v 1.525 2007-06-11 18:33:57 ot Exp $ # # Disable buffering on STDOUT! @@ -181,7 +181,7 @@ Directory not readable (permission denied): @_r # # Strings - $VERSION = q$Revision: 1.524 $; + $VERSION = q$Revision: 1.525 $; $VERSION =~ s/Revision: ([\d\.]+) /$1/; # @@ -1554,6 +1554,7 @@ sub report_errors ($) { my $escaped_uri = uri_escape($File->{URI}); $_msg =~ s/<!--URI-->/$escaped_uri/g; } + $_msg =~ s/<!--CFG_HOME_PAGE-->/$CFG->{'Home Page'}/g; $explanation = " $_msg\n$explanation"; # The send feedback plea. } diff --git a/share/templates/en_US/error_messages.cfg b/share/templates/en_US/error_messages.cfg index bc893b2..e75d764 100644 --- a/share/templates/en_US/error_messages.cfg +++ b/share/templates/en_US/error_messages.cfg @@ -8,7 +8,7 @@ verbose = <<.EOF. <p class="helpwanted"> <a - href="feedback.html?uri=<!--URI-->;errmsg_id=<!--MID-->#errormsg" + href="<!--CFG_HOME_PAGE-->feedback.html?uri=<!--URI-->;errmsg_id=<!--MID-->#errormsg" title="Suggest improvements on this error message through our feedback channels" >✉</a> </p> |