diff options
author | ot <ot@localhost> | 2005-02-25 00:18:51 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2005-02-25 00:18:51 +0000 |
commit | 45aea1dd9c0c29d55c7612d8dfa8d311c7809bdb (patch) | |
tree | 89ad66adcaf158b60b479f489fdbccf5e7f199b7 | |
parent | 010b35bc7fca08f10d4da22ace5b50889fd23c67 (diff) | |
download | markup-validator-45aea1dd9c0c29d55c7612d8dfa8d311c7809bdb.zip markup-validator-45aea1dd9c0c29d55c7612d8dfa8d311c7809bdb.tar.gz markup-validator-45aea1dd9c0c29d55c7612d8dfa8d311c7809bdb.tar.bz2 |
fixing page title for non-results, template-based pages (i.e only feedback for now, but more later perhaps)
-rwxr-xr-x | httpd/cgi-bin/sendfeedback.pl | 4 | ||||
-rw-r--r-- | share/templates/en_US/header.tmpl | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/httpd/cgi-bin/sendfeedback.pl b/httpd/cgi-bin/sendfeedback.pl index 391ec87..b1ecc36 100755 --- a/httpd/cgi-bin/sendfeedback.pl +++ b/httpd/cgi-bin/sendfeedback.pl @@ -1,7 +1,7 @@ #!/usr/bin/perl -T ## ## feedback generator for W3C Markup Validation Service -# # $Id: sendfeedback.pl,v 1.3 2005-02-03 06:53:04 ot Exp $ +# # $Id: sendfeedback.pl,v 1.4 2005-02-25 00:18:51 ot Exp $ ## Pragmas. use strict; @@ -146,7 +146,7 @@ sub prepare_error_message { } sub print_prefilled_form { - $T->param(page_title => "Feedback for the Markup Validator"); + $T->param(page_title => "Feedback"); $T->param(uri => $validated_uri); $T->param(errmsg_id => $errmsg_id); # $T->param(errlist => $errlist); diff --git a/share/templates/en_US/header.tmpl b/share/templates/en_US/header.tmpl index 7802d5f..3342c92 100644 --- a/share/templates/en_US/header.tmpl +++ b/share/templates/en_US/header.tmpl @@ -7,7 +7,7 @@ X-W3C-Validator-Recursion: <TMPL_IF NAME="depth"><TMPL_VAR NAME="depth"><TMPL_EL "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> - <title><TMPL_IF NAME="page_title_url">Result for <TMPL_VAR NAME="page_title_url" ESCAPE="HTML"><TMPL_ELSE>Validation Results</TMPL_IF> - W3C Markup Validator</title> + <title><TMPL_IF NAME="page_title_url">Result for <TMPL_VAR NAME="page_title_url" ESCAPE="HTML"><TMPL_ELSE><TMPL_IF NAME="page_title"><TMPL_VAR NAME="page_title" ESCAPE="HTML"><TMPL_ELSE>Validation Results</TMPL_IF></TMPL_IF> - W3C Markup Validator</title> <link rev="made" href="mailto:www-validator@w3.org" /> <link rev="start" href="./" title="Home Page" /> <style type="text/css" media="all">@import "./base.css";</style> |