Changeset 4359 for trunk/wp-includes/functions.php
- Timestamp:
- 10/07/2006 07:12:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r4258 r4359 1096 1096 1097 1097 function wp_die($message, $title = '') { 1098 global $wp_locale; 1099 1098 1100 header('Content-Type: text/html; charset=utf-8'); 1099 1101 … … 1102 1104 1103 1105 if ( strstr($_SERVER['PHP_SELF'], 'wp-admin') ) 1104 $ logo_src = 'images/wordpress-logo.png';1106 $admin_dir = ''; 1105 1107 else 1106 $ logo_src = 'wp-admin/images/wordpress-logo.png';1108 $admin_dir = 'wp-admin/'; 1107 1109 1108 1110 ?> 1109 1111 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 1110 <html xmlns="http://www.w3.org/1999/xhtml" >1112 <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> 1111 1113 <head> 1112 1114 <title><?php echo $title ?></title> 1113 1115 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 1114 <style media="screen" type="text/css"> 1115 <!-- 1116 html { 1117 background: #eee; 1118 } 1119 body { 1120 background: #fff; 1121 color: #000; 1122 font-family: Georgia, "Times New Roman", Times, serif; 1123 margin-left: 25%; 1124 margin-right: 25%; 1125 padding: .2em 2em; 1126 } 1127 1128 h1 { 1129 color: #006; 1130 font-size: 18px; 1131 font-weight: lighter; 1132 } 1133 1134 h2 { 1135 font-size: 16px; 1136 } 1137 1138 p, li, dt { 1139 line-height: 140%; 1140 padding-bottom: 2px; 1141 } 1142 1143 ul, ol { 1144 padding: 5px 5px 5px 20px; 1145 } 1146 #logo { 1147 margin-bottom: 2em; 1148 } 1149 --> 1150 </style> 1116 <link rel="stylesheet" href="<?php echo $admin_dir; ?>install.css" type="text/css" /> 1117 <?php if ( ('rtl' == $wp_locale->text_direction) ) : ?> 1118 <link rel="stylesheet" href="<?php echo $admin_dir; ?>install-rtl.css" type="text/css" /> 1119 <?php endif; ?> 1151 1120 </head> 1152 1121 <body> 1153 <h1 id="logo"><img alt="WordPress" src="<?php echo $ logo_src; ?>" /></h1>1122 <h1 id="logo"><img alt="WordPress" src="<?php echo $admin_dir; ?>images/wordpress-logo.png" /></h1> 1154 1123 <p><?php echo $message; ?></p> 1155 1124 </body>
Note: See TracChangeset
for help on using the changeset viewer.