mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
hackificator doesn't like mixed single/double-quoted attributes. These were 2 lingering instances in the admin.
See #27881. git-svn-id: https://develop.svn.wordpress.org/trunk@28530 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -608,10 +608,12 @@ if ( 'upgrade-core' == $action ) {
|
||||
$title = __('Update Themes');
|
||||
|
||||
require_once(ABSPATH . 'wp-admin/admin-header.php');
|
||||
echo '<div class="wrap">';
|
||||
echo '<h2>' . esc_html__('Update Themes') . '</h2>';
|
||||
echo "<iframe src='$url' style='width: 100%; height: 100%; min-height: 750px;' frameborder='0'></iframe>";
|
||||
echo '</div>';
|
||||
?>
|
||||
<div class="wrap">
|
||||
<h2><?php echo esc_html__('Update Themes') ?></h2>
|
||||
<iframe src="<?php echo $url ?>" style="width: 100%; height: 100%; min-height: 750px;" frameborder="0"></iframe>
|
||||
</div>
|
||||
<?php
|
||||
include(ABSPATH . 'wp-admin/admin-footer.php');
|
||||
|
||||
} elseif ( 'do-translation-upgrade' == $action ) {
|
||||
|
||||
Reference in New Issue
Block a user