src/wp-includes/class-json.php | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/wp-includes/class-json.php b/src/wp-includes/class-json.php
index 646c4b7a7c..614023df96 100644
|
a
|
b
|
class Services_JSON |
| 142 | 142 | */ |
| 143 | 143 | function __construct( $use = 0 ) |
| 144 | 144 | { |
| 145 | | $this->use = $use; |
| | 145 | $this->use = $use; |
| 146 | 146 | $this->_mb_strlen = function_exists('mb_strlen'); |
| 147 | 147 | $this->_mb_convert_encoding = function_exists('mb_convert_encoding'); |
| 148 | 148 | $this->_mb_substr = function_exists('mb_substr'); |
| … |
… |
class Services_JSON |
| 155 | 155 | self::__construct( $use ); |
| 156 | 156 | } |
| 157 | 157 | // private - cache the mbstring lookup results.. |
| 158 | | var $_mb_strlen = false; |
| 159 | | var $_mb_substr = false; |
| | 158 | var $_mb_strlen = false; |
| | 159 | var $_mb_substr = false; |
| 160 | 160 | var $_mb_convert_encoding = false; |
| 161 | 161 | |
| 162 | 162 | /** |