Add a viewport meta tag to wp_die().

Props leogopal

Fixes #29336

Built from https://develop.svn.wordpress.org/trunk@32501


git-svn-id: http://core.svn.wordpress.org/trunk@32471 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
John Blackbourn 2015-05-13 04:08:25 +00:00
parent 2aa620b76a
commit 1c40b495a1
2 changed files with 2 additions and 1 deletions

View File

@ -2474,6 +2474,7 @@ function _default_wp_die_handler( $message, $title = '', $args = array() ) {
<html xmlns="http://www.w3.org/1999/xhtml" <?php if ( function_exists( 'language_attributes' ) && function_exists( 'is_rtl' ) ) language_attributes(); else echo "dir='$text_direction'"; ?>>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width">
<title><?php echo $title ?></title>
<style type="text/css">
html {

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-alpha-32500';
$wp_version = '4.3-alpha-32501';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.