Changeset 12491
- Timestamp:
- 12/22/2009 04:49:35 PM (15 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-json.php
r11930 r12491 51 51 * @author Brett Stimmerman <brettstimmerman[at]gmail[dot]com> 52 52 * @copyright 2005 Michal Migurski 53 * @version CVS: $Id: JSON.php,v 1.3 2009/05/22 23:51:00 alan_k Exp$53 * @version CVS: $Id: JSON.php 288200 2009-09-09 15:41:29Z alan_k $ 54 54 * @license http://www.opensource.org/licenses/bsd-license.php 55 55 * @link http://pear.php.net/pepr/pepr-proposal-show.php?id=198 … … 236 236 function encode($var) 237 237 { 238 header('Content-type: application/ x-javascript');238 header('Content-type: application/json'); 239 239 return $this->_encode($var); 240 240 } -
trunk/wp-includes/compat.php
r11921 r12491 134 134 } 135 135 136 return $wp_json->encode ( $string );136 return $wp_json->encodeUnsafe( $string ); 137 137 } 138 138 }
Note: See TracChangeset
for help on using the changeset viewer.