Changeset 32652
- Timestamp:
- 05/29/2015 04:00:29 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r32642 r32652 339 339 * 340 340 * @param int $comment_id 341 * @ return die341 * @param int $delta 342 342 */ 343 343 function _wp_ajax_delete_comment_response( $comment_id, $delta = -1 ) { … … 665 665 } 666 666 667 /** 668 * @since 3.1.0 669 * 670 * @param string $action 671 */ 667 672 function wp_ajax_delete_page( $action ) { 668 673 if ( empty( $action ) ) … … 813 818 'what' => 'taxonomy', 814 819 'supplemental' => compact('parents', 'noparents') 815 820 ) ); 816 821 $x->add( array( 817 822 'what' => 'term', 818 823 'position' => $level, 819 824 'supplemental' => (array) $tag 820 825 ) ); 821 826 $x->send(); 822 827 } … … 2824 2829 2825 2830 /** 2831 * @since 4.0.0 2826 2832 * 2827 2833 * @global WP_Post $post … … 2894 2900 */ 2895 2901 function wp_ajax_destroy_sessions() { 2896 2897 2902 $user = get_userdata( (int) $_POST['user_id'] ); 2898 2903 if ( $user ) {
Note: See TracChangeset
for help on using the changeset viewer.