diff options
author | chrisaga <chrisaga@piwigo.org> | 2005-12-31 11:04:30 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2005-12-31 11:04:30 +0000 |
commit | 9a83134d1f53da6993927a216a7e41b23768d7eb (patch) | |
tree | d8242b4031bd5365b62e27bdbf875ff3638f7f67 /template/yoga/install.tpl | |
parent | 29a32a3d9422416423f612acb90bceeac4b52608 (diff) |
fix bug 249: XHTML Validation in install.php
install.tpl is now HTML4.01 strict
git-svn-id: http://piwigo.org/svn/trunk@996 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/install.tpl | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/template/yoga/install.tpl b/template/yoga/install.tpl index 78b9e1836..2332910e2 100644 --- a/template/yoga/install.tpl +++ b/template/yoga/install.tpl @@ -1,9 +1,10 @@ -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" +"http://www.w3.org/TR/html4/strict.dtd"> +<html lang="fr"> <head> -<meta http-equiv="Content-Type" content="text/html; charset={T_CONTENT_ENCODING}" /> -<meta http-equiv="Content-script-type" content="text/javascript" /> -<meta http-equiv="Content-Style-Type" content="text/css" /> +<meta http-equiv="Content-Type" content="text/html; charset={T_CONTENT_ENCODING}"> +<meta http-equiv="Content-script-type" content="text/javascript"> +<meta http-equiv="Content-Style-Type" content="text/css"> <title>PhpWebGallery {RELEASE}</title> <style type="text/css"> a, a:hover { @@ -110,7 +111,7 @@ text-align:center; <th colspan="3">{L_BASE_TITLE}</th> </tr> <tr> - <td width="30%">{L_LANG_TITLE}</td> + <td style="width:30%;">{L_LANG_TITLE}</td> <td colspan="2" align="left"> {F_LANG_SELECT} </td> @@ -176,7 +177,7 @@ text-align:center; <td class="row2">{L_ADMIN_EMAIL_INFO}</td> </tr> <tr> - <td colspan="3"> </th> + <td colspan="3"> </td> </tr> <tr> <td colspan="3" align="center"> @@ -200,4 +201,4 @@ text-align:center; </tr> </table> </body> -</html>
\ No newline at end of file +</html> |