wpLink: always show the URL field at the top.

Fixes #28206.

git-svn-id: https://develop.svn.wordpress.org/trunk@32017 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2015-04-04 21:17:22 +00:00
parent 8d8ea0c529
commit e66d393d1e
1 changed files with 3 additions and 3 deletions

View File

@ -1446,12 +1446,12 @@ final class _WP_Editors {
<div id="link-selector">
<div id="link-options">
<p class="howto"><?php _e( 'Enter the destination URL' ); ?></p>
<div class="wp-link-text-field">
<label><span><?php _e( 'Link Text' ); ?></span><input id="wp-link-text" type="text" /></label>
</div>
<div>
<label><span><?php _e( 'URL' ); ?></span><input id="wp-link-url" type="text" /></label>
</div>
<div class="wp-link-text-field">
<label><span><?php _e( 'Link Text' ); ?></span><input id="wp-link-text" type="text" /></label>
</div>
<div class="link-target">
<label><span>&nbsp;</span><input type="checkbox" id="wp-link-target" /> <?php _e( 'Open link in a new window/tab' ); ?></label>
</div>