Changeset 10543
- Timestamp:
- 02/11/2009 07:36:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/compat.php
r10298 r10543 100 100 // Added in PHP 5.1.0 101 101 // Error checks from PEAR::PHP_Compat 102 function htmlspecialchars_decode( $str , $quote_style = ENT_COMPAT )102 function htmlspecialchars_decode( $string, $quote_style = ENT_COMPAT ) 103 103 { 104 104 if ( !is_scalar( $string ) ) { … … 112 112 } 113 113 114 return wp_specialchars_decode( $str , $quote_style );114 return wp_specialchars_decode( $string, $quote_style ); 115 115 } 116 116 }
Note: See TracChangeset
for help on using the changeset viewer.