<!DOCTYPE... is no longer a style, but more a textual prefix, which it also is...
<HTML> tag incorporated truly
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3098
7612ce4b-ef26-0410-bec9-
ea0150e637f0
global $theme_css, $custom_css, $base_uri;
$page = new html();
- $page->addChild('','',array('!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"' => false),'','','');
- $html = new html('html');
- $html->addChild('HTML');
-/* shouldn't the last two lines be just this line? $page->addChild('HTML'); */
+ $page->addChild('','<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">');
+ $page->addChild('HTML');
return $page;
}