Ticket #23248: 23248.diff
File 23248.diff, 2.1 KB (added by , 12 years ago) |
---|
-
wp-load.php
54 54 require_once( ABSPATH . WPINC . '/functions.php' ); 55 55 56 56 // Die with an error message 57 $die = __( "There doesn't seem to be a <code>wp-config.php</code> file. I needthis before we can get started." ) . '</p>';57 $die = __( "There doesn't seem to be a <code>wp-config.php</code> file. WordPress needs this before we can get started." ) . '</p>'; 58 58 $die .= '<p>' . __( "Need more help? <a href='http://codex.wordpress.org/Editing_wp-config.php'>We got it</a>." ) . '</p>'; 59 59 $die .= '<p>' . __( "You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." ) . '</p>'; 60 60 $die .= '<p><a href="' . $path . '" class="button button-large">' . __( "Create a Configuration File" ) . '</a>'; -
wp-trackback.php
73 73 $tb_id = $posts[0]->ID; 74 74 75 75 if ( !isset($tb_id) || !intval( $tb_id ) ) 76 trackback_response(1, ' I really needan ID for this to work.');76 trackback_response(1, 'WordPress really needs an ID for this to work.'); 77 77 78 78 if (empty($title) && empty($tb_url) && empty($blog_name)) { 79 79 // If it doesn't look like a trackback at all... -
wp-admin/setup-config.php
63 63 wp_magic_quotes(); 64 64 65 65 if ( ! file_exists( ABSPATH . 'wp-config-sample.php' ) ) 66 wp_die( __( 'Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.' ) );66 wp_die( __( 'Sorry, WordPress needs a wp-config-sample.php file to work from. Please re-upload this file fom your WordPress installation.' ) ); 67 67 68 68 $config_file = file(ABSPATH . 'wp-config-sample.php'); 69 69