Make WordPress Core

Ticket #17975: wp-die-inline-css.diff

File wp-die-inline-css.diff, 3.7 KB (added by westi, 13 years ago)
  • functions.php

     
    28112811                $message .= "\n<p><a href='javascript:history.back()'>$back_text</p>";
    28122812        }
    28132813
    2814         if ( defined( 'WP_SITEURL' ) && '' != WP_SITEURL )
    2815                 $admin_dir = WP_SITEURL . '/wp-admin/';
    2816         elseif ( function_exists( 'get_bloginfo' ) && '' != get_bloginfo( 'wpurl' ) )
    2817                 $admin_dir = get_bloginfo( 'wpurl' ) . '/wp-admin/';
    2818         elseif ( strpos( $_SERVER['PHP_SELF'], 'wp-admin' ) !== false )
    2819                 $admin_dir = '';
    2820         else
    2821                 $admin_dir = 'wp-admin/';
    2822 
    28232814        if ( !function_exists( 'did_action' ) || !did_action( 'admin_head' ) ) :
    2824         if ( !headers_sent() ) {
    2825                 status_header( $r['response'] );
    2826                 nocache_headers();
    2827                 header( 'Content-Type: text/html; charset=utf-8' );
    2828         }
    2829 
    2830         if ( empty($title) )
    2831                 $title = $have_gettext ? __('WordPress &rsaquo; Error') : 'WordPress &rsaquo; Error';
    2832 
    2833         $text_direction = 'ltr';
    2834         if ( isset($r['text_direction']) && 'rtl' == $r['text_direction'] )
    2835                 $text_direction = 'rtl';
    2836         elseif ( function_exists( 'is_rtl' ) && is_rtl() )
    2837                 $text_direction = 'rtl';
     2815                if ( !headers_sent() ) {
     2816                        status_header( $r['response'] );
     2817                        nocache_headers();
     2818                        header( 'Content-Type: text/html; charset=utf-8' );
     2819                }
     2820       
     2821                if ( empty($title) )
     2822                        $title = $have_gettext ? __('WordPress &rsaquo; Error') : 'WordPress &rsaquo; Error';
     2823       
     2824                $text_direction = 'ltr';
     2825                if ( isset($r['text_direction']) && 'rtl' == $r['text_direction'] )
     2826                        $text_direction = 'rtl';
     2827                elseif ( function_exists( 'is_rtl' ) && is_rtl() )
     2828                        $text_direction = 'rtl';
    28382829?>
    28392830<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    28402831<!-- Ticket #11289, IE bug fix: always pad the error page with enough characters such that it is greater than 512 bytes, even after gzip compression abcdefghijklmnopqrstuvwxyz1234567890aabbccddeeffgghhiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz11223344556677889900abacbcbdcdcededfefegfgfhghgihihjijikjkjlklkmlmlnmnmononpopoqpqprqrqsrsrtstsubcbcdcdedefefgfabcadefbghicjkldmnoepqrfstugvwxhyz1i234j567k890laabmbccnddeoeffpgghqhiirjjksklltmmnunoovppqwqrrxsstytuuzvvw0wxx1yyz2z113223434455666777889890091abc2def3ghi4jkl5mno6pqr7stu8vwx9yz11aab2bcc3dd4ee5ff6gg7hh8ii9j0jk1kl2lmm3nnoo4p5pq6qrr7ss8tt9uuvv0wwx1x2yyzz13aba4cbcb5dcdc6dedfef8egf9gfh0ghg1ihi2hji3jik4jkj5lkl6kml7mln8mnm9ono -->
     
    28422833<head>
    28432834        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    28442835        <title><?php echo $title ?></title>
    2845         <link rel="stylesheet" href="<?php echo $admin_dir; ?>css/install.css" type="text/css" />
    2846 <?php
    2847 if ( 'rtl' == $text_direction ) : ?>
    2848         <link rel="stylesheet" href="<?php echo $admin_dir; ?>css/install-rtl.css" type="text/css" />
    2849 <?php endif; ?>
     2836        <style>
     2837                html {
     2838                        background: #f9f9f9;
     2839                }
     2840                body {
     2841                        background: #fff;
     2842                        color: #333;
     2843                        font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif;
     2844                        margin: 2em auto;
     2845                        width: 700px;
     2846                        padding: 1em 2em;
     2847                        -moz-border-radius: 11px;
     2848                        -khtml-border-radius: 11px;
     2849                        -webkit-border-radius: 11px;
     2850                        border-radius: 11px;
     2851                        border: 1px solid #dfdfdf;
     2852                }
     2853                #error-page {
     2854                        margin-top: 50px;
     2855                }
     2856                #error-page p {
     2857                        font-size: 12px;
     2858                        line-height: 18px;
     2859                        margin: 25px 0 20px;
     2860                }
     2861                #error-page code {
     2862                        font-family: Consolas, Monaco, monospace;
     2863                }
     2864                <?php if ( 'rtl' == $text_direction ) : ?>
     2865                body { font-family: Tahoma, arial; }
     2866                <?php endif; ?>
     2867        </style>
    28502868</head>
    28512869<body id="error-page">
    2852 <?php endif; ?>
     2870<?php endif; // !function_exists( 'did_action' ) || !did_action( 'admin_head' ) ?>
    28532871        <?php echo $message; ?>
    28542872</body>
    28552873</html>