Media: Ensure the "Edit more details" link in the attachment details modal always points to the correct editing URL.
Fixes #44620 Merges [43601] to the 4.9 branch. Built from https://develop.svn.wordpress.org/branches/4.9@43602 git-svn-id: http://core.svn.wordpress.org/branches/4.9@43431 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e92c6a2817
commit
e052467e89
|
@ -428,7 +428,7 @@ function wp_print_media_templates() {
|
|||
<div class="actions">
|
||||
<a class="view-attachment" href="{{ data.link }}"><?php _e( 'View attachment page' ); ?></a>
|
||||
<# if ( data.can.save ) { #> |
|
||||
<a href="post.php?post={{ data.id }}&action=edit"><?php _e( 'Edit more details' ); ?></a>
|
||||
<a href="{{ data.editLink }}"><?php _e( 'Edit more details' ); ?></a>
|
||||
<# } #>
|
||||
<# if ( ! data.uploading && data.can.remove ) { #> |
|
||||
<?php if ( MEDIA_TRASH ): ?>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9.9-alpha-43600';
|
||||
$wp_version = '4.9.9-alpha-43602';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue