Skip to content

Commit

Permalink
Fix #16025: Change DOCTYPE to HTML5
Browse files Browse the repository at this point in the history
  • Loading branch information
dregad committed Oct 9, 2013
1 parent ec574f8 commit 32e89f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/html_api.php
Expand Up @@ -300,8 +300,8 @@ function html_page_bottom1a( $p_file = null ) {
* @return null
*/
function html_begin() {
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">', "\n";
echo '<html xmlns="http://www.w3.org/1999/xhtml">', "\n";
echo '<!DOCTYPE html>', "\n";
echo '<html>', "\n";
}

/**
Expand Down

0 comments on commit 32e89f4

Please sign in to comment.