Fix redirects after editing and deleting tags.
git-svn-id: http://svn.automattic.com/wordpress/trunk@7536 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
fccd2c132e
commit
8c42926dee
|
@ -22,7 +22,7 @@ if ( ! empty($tag_ID) ) {
|
||||||
<?php echo $form ?>
|
<?php echo $form ?>
|
||||||
<input type="hidden" name="action" value="<?php echo $action ?>" />
|
<input type="hidden" name="action" value="<?php echo $action ?>" />
|
||||||
<input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" />
|
<input type="hidden" name="tag_ID" value="<?php echo $tag->term_id ?>" />
|
||||||
<?php wp_nonce_field($nonce_action); ?>
|
<?php wp_original_referer_field(true, 'previous'); wp_nonce_field($nonce_action); ?>
|
||||||
<table class="form-table">
|
<table class="form-table">
|
||||||
<tr class="form-field form-required">
|
<tr class="form-field form-required">
|
||||||
<th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th>
|
<th scope="row" valign="top"><label for="name"><?php _e('Tag name') ?></label></th>
|
||||||
|
|
|
@ -52,7 +52,14 @@ case 'bulk-delete':
|
||||||
wp_delete_term( $tag_ID, 'post_tag');
|
wp_delete_term( $tag_ID, 'post_tag');
|
||||||
}
|
}
|
||||||
|
|
||||||
wp_redirect('edit-tags.php?message=6');
|
$location = 'edit-tags.php';
|
||||||
|
if ( $referer = wp_get_referer() ) {
|
||||||
|
if ( false !== strpos($referer, 'edit-tags.php') )
|
||||||
|
$location = $referer;
|
||||||
|
}
|
||||||
|
|
||||||
|
$location = add_query_arg('message', 6, $location);
|
||||||
|
wp_redirect($location);
|
||||||
exit;
|
exit;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
@ -75,11 +82,19 @@ case 'editedtag':
|
||||||
wp_die(__('Cheatin’ uh?'));
|
wp_die(__('Cheatin’ uh?'));
|
||||||
|
|
||||||
$ret = wp_update_term($tag_ID, 'post_tag', $_POST);
|
$ret = wp_update_term($tag_ID, 'post_tag', $_POST);
|
||||||
if( $ret && !is_wp_error( $ret ) ) {
|
|
||||||
wp_redirect('edit-tags.php?message=3');
|
$location = 'edit-tags.php';
|
||||||
} else {
|
if ( $referer = wp_get_original_referer() ) {
|
||||||
wp_redirect('edit-tags.php?message=5');
|
if ( false !== strpos($referer, 'edit-tags.php') )
|
||||||
|
$location = $referer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ( $ret && !is_wp_error( $ret ) )
|
||||||
|
$location = add_query_arg('message', 3, $location);
|
||||||
|
else
|
||||||
|
$location = add_query_arg('message', 5, $location);
|
||||||
|
|
||||||
|
wp_redirect($location);
|
||||||
exit;
|
exit;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue