diff options
author | ville <ville@localhost> | 2005-04-09 15:42:03 +0000 |
---|---|---|
committer | ville <ville@localhost> | 2005-04-09 15:42:03 +0000 |
commit | 6aafb31f3e0df7096c552db4653e29ca9b554cf0 (patch) | |
tree | c82b128bc22c2a130693456a5f78e464b456aaa0 | |
parent | 3757bfbc56fd6ff29557c90a9445f0c36a8791df (diff) | |
download | markup-validator-6aafb31f3e0df7096c552db4653e29ca9b554cf0.zip markup-validator-6aafb31f3e0df7096c552db4653e29ca9b554cf0.tar.gz markup-validator-6aafb31f3e0df7096c552db4653e29ca9b554cf0.tar.bz2 |
Avoid whitespace/empty lines before XML declaration, simplify "depth" template expression.
-rw-r--r-- | share/templates/en_US/header.tmpl | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/share/templates/en_US/header.tmpl b/share/templates/en_US/header.tmpl index 3c2e739..1783159 100644 --- a/share/templates/en_US/header.tmpl +++ b/share/templates/en_US/header.tmpl @@ -1,9 +1,8 @@ Content-Language: en Content-Type: text/html; charset=utf-8 -X-W3C-Validator-Recursion: <TMPL_IF NAME="depth"><TMPL_VAR NAME="depth"><TMPL_ELSE>1</TMPL_IF> -<TMPL_IF NAME="valid_status">X-W3C-Validator-Status: <TMPL_VAR NAME="valid_status"></TMPL_IF> -<TMPL_IF NAME="valid_errors_num">X-W3C-Validator-Errors: <TMPL_VAR NAME="valid_errors_num"></TMPL_IF> - +X-W3C-Validator-Recursion: <TMPL_VAR NAME="depth" DEFAULT="1"><TMPL_IF NAME="valid_status"> +X-W3C-Validator-Status: <TMPL_VAR NAME="valid_status"></TMPL_IF><TMPL_IF NAME="valid_errors_num"> +X-W3C-Validator-Errors: <TMPL_VAR NAME="valid_errors_num"></TMPL_IF> <?xml version="1.0"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |