Ticket #12828: 12828.patch
File 12828.patch, 1.6 KB (added by , 15 years ago) |
---|
-
wp-admin/includes/template.php
3491 3491 if ( get_user_setting('mfold') == 'f' ) 3492 3492 $admin_body_class .= ' folded'; 3493 3493 ?> 3494 <style type="text/css"> 3495 /* fix for scrollbar in iframe*/ 3496 html, body { 3497 height: 98%; 3498 } 3499 </style> 3494 3500 </head> 3495 3501 <body<?php if ( isset($GLOBALS['body_id']) ) echo ' id="' . $GLOBALS['body_id'] . '"'; ?> class="wp-admin no-js<?php echo apply_filters( 'admin_body_class', '' ) . " $admin_body_class"; ?>"> 3496 3502 <script type="text/javascript"> -
wp-admin/update-core.php
418 418 echo '<div class="wrap">'; 419 419 screen_icon('plugins'); 420 420 echo '<h2>' . esc_html__('Update Plugins') . '</h2>'; 421 echo "<iframe src='$url' style='width: 100%; height:100%; min-height: 850px;'></iframe>";421 echo "<iframe src='$url' style='width: 100%; height:100%; min-height:500px' frameborder='0'></iframe>"; 422 422 echo '</div>'; 423 423 } elseif ( 'do-theme-upgrade' == $action ) { 424 424 check_admin_referer('upgrade-core'); … … 441 441 echo '<div class="wrap">'; 442 442 screen_icon('themes'); 443 443 echo '<h2>' . esc_html__('Update Themes') . '</h2>'; 444 echo "<iframe src='$url' style='width: 100%; height:100%; min-height: 850px;'></iframe>";444 echo "<iframe src='$url' style='width: 100%; height:100%; min-height:500px;' frameborder='0'></iframe>"; 445 445 echo '</div>'; 446 446 } 447 447