Changeset 21681 for trunk/wp-includes/functions.php
- Timestamp:
- 08/31/2012 02:58:51 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r21679 r21681 2152 2152 function wp_send_json( $response ) { 2153 2153 @header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ) ); 2154 echo json_encode( $ json);2154 echo json_encode( $response ); 2155 2155 if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) 2156 2156 wp_die();
Note: See TracChangeset
for help on using the changeset viewer.