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:
Scott Taylor
2014-05-19 17:09:42 +00:00
parent d261d0030a
commit be2e5f6fb5
2 changed files with 18 additions and 15 deletions

View File

@@ -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 ) {