Ticket #590: wp25_confirm_message.patch
| File wp25_confirm_message.patch, 1.3 kB (added by momo360modena, 5 months ago) |
|---|
-
.
old new 349 349 // Common 350 350 case "confirm": 351 351 global $wp_locale; 352 if( !headers_sent() ){ 353 nocache_headers(); 354 header( 'Content-Type: text/html; charset=utf-8' ); 355 } 352 356 ?> 353 357 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 354 358 <html xmlns="http://www.w3.org/1999/xhtml" <?php if ( function_exists('language_attributes') ) language_attributes(); ?>> … … 361 365 <link rel="stylesheet" href="css/install-rtl.css" type="text/css" /> 362 366 <?php endif; ?> 363 367 </head> 364 <body >368 <body id="error-page"> 365 369 <h1 id="logo"><img alt="WordPress" src="images/wordpress-logo.png" /></h1> 366 370 <form action='wpmu-edit.php?action=<?php echo wp_specialchars( $_GET[ 'action2' ] ) ?>' method='post'> 367 371 <input type='hidden' name='action' value='<?php echo wp_specialchars( $_GET['action2'] ) ?>' /> … … 370 374 <?php wp_nonce_field( $_GET['action2'] ) ?> 371 375 <p> 372 376 <?php echo wp_specialchars( $_GET['msg'] ) ?><br /> 373 <input type='submit' value='<?php _e("Confirm"); ?>' /></p>377 <input class="button" type='submit' value='<?php _e("Confirm"); ?>' /></p> 374 378 </form> 375 379 </body> 376 380 </html>
