Changeset 2548
- Timestamp:
- 04/19/2005 03:35:48 AM (19 years ago)
- Location:
- trunk
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import-b2.php
r1575 r2548 5 5 $step = $_GET['step']; 6 6 if (!$step) $step = 0; 7 header( 'Content-Type: text/html; charset=utf-8' ); 7 8 ?> 8 9 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -
trunk/wp-admin/import-blogger.php
r2451 r2548 16 16 } 17 17 } 18 require_once('../wp-config.php'); 19 require('upgrade-functions.php'); 18 require_once('../wp-config.php'); 19 require('upgrade-functions.php'); 20 header( 'Content-Type: text/html; charset=utf-8' ); 20 21 switch ($action) { 21 22 -
trunk/wp-admin/import-greymatter.php
r2451 r2548 20 20 } 21 21 22 header( 'Content-Type: text/html; charset=utf-8' ); 22 23 23 24 switch ($action) { -
trunk/wp-admin/import-livejournal.php
r1575 r2548 18 18 $step = $_GET['step']; 19 19 if (!$step) $step = 0; 20 header( 'Content-Type: text/html; charset=utf-8' ); 20 21 ?> 21 22 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -
trunk/wp-admin/import-mt.php
r2383 r2548 9 9 $step = $_GET['step']; 10 10 if (!$step) $step = 0; 11 header( 'Content-Type: text/html; charset=utf-8' ); 11 12 ?> 12 13 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -
trunk/wp-admin/import-rss.php
r2193 r2548 23 23 $step = $_GET['step']; 24 24 if (!$step) $step = 0; 25 header( 'Content-Type: text/html; charset=utf-8' ); 25 26 ?> 26 27 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -
trunk/wp-admin/import-textpattern.php
r1590 r2548 14 14 $step = $_GET['step']; 15 15 if (!$step) $step = 0; 16 header( 'Content-Type: text/html; charset=utf-8' ); 16 17 ?> 17 18 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -
trunk/wp-admin/install.php
r2532 r2548 13 13 else 14 14 $step = 0; 15 header( 'Content-Type: text/html; charset=utf-8' ); 15 16 ?> 16 17 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -
trunk/wp-admin/setup-config.php
r2455 r2548 3 3 4 4 if (file_exists('../wp-config.php')) 5 die("The file 'wp-config.php' already exists. If you need to reset any of the configuration items in this file, please delete it first. ");5 die("The file 'wp-config.php' already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try <a href='install.php'>installing now</a>."); 6 6 7 7 if (!file_exists('../wp-config-sample.php')) … … 13 13 $step = 0; 14 14 if(isset($_GET['step'])) $step = $_GET['step']; 15 header( 'Content-Type: text/html; charset=utf-8' ); 15 16 ?> 16 17 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -
trunk/wp-includes/wp-db.php
r2547 r2548 302 302 if ( !$this->show_errors ) 303 303 return false; 304 header( 'Content-Type: ' . get_bloginfo('html_type') . '; charset=' . get_bloginfo('charset') ); 304 305 echo <<<HEAD 305 306 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> -
trunk/wp-login.php
r2477 r2548 9 9 header('Cache-Control: no-cache, must-revalidate'); 10 10 header('Pragma: no-cache'); 11 header('Content-Type: '.get_bloginfo('html_type').'; charset='.get_bloginfo('charset')); 11 12 12 13 if ( defined('RELOCATE') ) { // Move flag is set -
trunk/wp-register.php
r2477 r2548 18 18 } 19 19 20 if ( !get_settings('users_can_register')) {20 if ( !get_settings('users_can_register') ) 21 21 $action = 'disabled'; 22 } 22 23 header( 'Content-Type: ' . get_bloginfo('html_type') . '; charset=' . get_bloginfo('charset') ); 23 24 24 25 switch($action) {
Note: See TracChangeset
for help on using the changeset viewer.