Lets try the HTML 5 offline resources storage (Firefox 3.5 only)

git-svn-id: https://develop.svn.wordpress.org/trunk@11077 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-04-24 13:02:52 +00:00
parent dfe7ffec18
commit 4be3953c7a
1 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,8 @@ $title = wp_specialchars( strip_tags( $title ) );
wp_user_settings();
?>
<!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" <?php do_action('admin_xml_ns'); ?> <?php language_attributes(); ?>>
<html xmlns="http://www.w3.org/1999/xhtml" <?php do_action('admin_xml_ns'); ?> <?php language_attributes();
echo strpos($_SERVER['HTTP_USER_AGENT'], 'Firefox/3.5') !== false ? ' manifest="cache-manifest.php"' : ''; ?>>
<head>
<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php echo get_option('blog_charset'); ?>" />
<title><?php echo $title; ?> &lsaquo; <?php bloginfo('name') ?> &#8212; WordPress</title>