Changeset 12182
- Timestamp:
- 11/13/2009 03:47:10 AM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/page.php
r12121 r12182 161 161 $sendback = admin_url('edit-pages.php?trashed=1&ids='.$post_id); 162 162 else 163 $sendback = add_query_arg( array('trashed' => 1, ids=> $post_id), $sendback );163 $sendback = add_query_arg( array('trashed' => 1, 'ids' => $post_id), $sendback ); 164 164 165 165 wp_redirect($sendback); -
trunk/wp-admin/post.php
r12121 r12182 201 201 $sendback = admin_url('edit.php?trashed=1&ids='.$post_id); 202 202 else 203 $sendback = add_query_arg( array('trashed' => 1, ids=> $post_id), $sendback );203 $sendback = add_query_arg( array('trashed' => 1, 'ids' => $post_id), $sendback ); 204 204 205 205 wp_redirect($sendback);
Note: See TracChangeset
for help on using the changeset viewer.