diff options
author | ot <ot@localhost> | 2007-05-07 15:59:19 +0000 |
---|---|---|
committer | ot <ot@localhost> | 2007-05-07 15:59:19 +0000 |
commit | 52d0faa9a749541f92088e5462d7c0a3d0b123c7 (patch) | |
tree | d12ea146cbf8dbb5d5d7ac36f82ecc47ab1af84c | |
parent | b74851c8603721167dc19b4ae817f303952bcacc (diff) | |
download | markup-validator-52d0faa9a749541f92088e5462d7c0a3d0b123c7.zip markup-validator-52d0faa9a749541f92088e5462d7c0a3d0b123c7.tar.gz markup-validator-52d0faa9a749541f92088e5462d7c0a3d0b123c7.tar.bz2 |
reverting changes to doctype and charset drop-down menu,
as it was breaking some features in code
-rwxr-xr-x | htdocs/charset-select.html | 2 | ||||
-rwxr-xr-x | htdocs/doctype-select.html | 2 | ||||
-rw-r--r-- | share/templates/en_US/popup_charset.tmpl | 2 | ||||
-rw-r--r-- | share/templates/en_US/popup_doctype.tmpl | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/htdocs/charset-select.html b/htdocs/charset-select.html index 6a78c68..61fe346 100755 --- a/htdocs/charset-select.html +++ b/htdocs/charset-select.html @@ -1,5 +1,5 @@ <select id="<!--#echo var="fieldset_id" -->-charset" name="charset"> - <option value="" selected="selected">(detect automatically)</option> + <option value="(detect automatically)" selected="selected">(detect automatically)</option> <option value="utf-8">utf-8 (Unicode, worldwide)</option> <option value="utf-16">utf-16 (Unicode, worldwide)</option> <option value="iso-8859-1">iso-8859-1 (Western Europe)</option> diff --git a/htdocs/doctype-select.html b/htdocs/doctype-select.html index ef9b532..941dfde 100755 --- a/htdocs/doctype-select.html +++ b/htdocs/doctype-select.html @@ -1,5 +1,5 @@ <select id="<!--#echo var="fieldset_id" -->-doctype" name="doctype"> - <option value="" selected="selected">(detect automatically)</option> + <option value="Inline" selected="selected">(detect automatically)</option> <option value="XHTML 1.0 Strict">XHTML 1.0 Strict</option> <option value="XHTML 1.0 Transitional">XHTML 1.0 Transitional</option> <option value="XHTML 1.0 Frameset">XHTML 1.0 Frameset</option> diff --git a/share/templates/en_US/popup_charset.tmpl b/share/templates/en_US/popup_charset.tmpl index 035f5ee..846d80e 100644 --- a/share/templates/en_US/popup_charset.tmpl +++ b/share/templates/en_US/popup_charset.tmpl @@ -1,5 +1,5 @@ <select name="charset" id="charset"> - <option value="">(detect automatically)</option> + <option value="(detect automatically)">(detect automatically)</option> <option value="utf-8" <TMPL_IF NAME="override charset utf-8">selected="selected"</TMPL_IF>>utf-8 (Unicode, worldwide)</option> <option value="utf-16" <TMPL_IF NAME="override charset utf-16">selected="selected"</TMPL_IF>>utf-16 (Unicode, worldwide)</option> <option value="iso-8859-1" <TMPL_IF NAME="override charset iso-8859-1">selected="selected"</TMPL_IF>>iso-8859-1 (Western Europe)</option> diff --git a/share/templates/en_US/popup_doctype.tmpl b/share/templates/en_US/popup_doctype.tmpl index ad64c04..98aa12b 100644 --- a/share/templates/en_US/popup_doctype.tmpl +++ b/share/templates/en_US/popup_doctype.tmpl @@ -1,5 +1,5 @@ <select id="doctype" name="doctype"> - <option value="">(detect automatically)</option> + <option value="Inline">(detect automatically)</option> <option value="XHTML 1.0 Strict"<TMPL_IF NAME="override doctype XHTML 1.0 Strict">selected="selected"</TMPL_IF>>XHTML 1.0 Strict</option> <option value="XHTML 1.0 Transitional" <TMPL_IF NAME="override doctype XHTML 1.0 Transitional">selected="selected"</TMPL_IF>>XHTML 1.0 Transitional</option> <option value="XHTML 1.0 Frameset" <TMPL_IF NAME="override doctype XHTML 1.0 Frameset">selected="selected"</TMPL_IF>>XHTML 1.0 Frameset</option> |