mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 01:27:36 +01:00
Use right variable name. Props stringfold. fixes #9090 for trunk
git-svn-id: http://svn.automattic.com/wordpress/trunk@10543 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b3b3e7f2ce
commit
39edc65b53
@ -99,7 +99,7 @@ function _mb_strcut( $str, $start, $length=null, $encoding=null ) {
|
||||
if ( !function_exists( 'htmlspecialchars_decode' ) ) {
|
||||
// Added in PHP 5.1.0
|
||||
// Error checks from PEAR::PHP_Compat
|
||||
function htmlspecialchars_decode( $str, $quote_style = ENT_COMPAT )
|
||||
function htmlspecialchars_decode( $string, $quote_style = ENT_COMPAT )
|
||||
{
|
||||
if ( !is_scalar( $string ) ) {
|
||||
trigger_error( 'htmlspecialchars_decode() expects parameter 1 to be string, ' . gettype( $string ) . ' given', E_USER_WARNING );
|
||||
@ -111,7 +111,7 @@ if ( !function_exists( 'htmlspecialchars_decode' ) ) {
|
||||
return;
|
||||
}
|
||||
|
||||
return wp_specialchars_decode( $str, $quote_style );
|
||||
return wp_specialchars_decode( $string, $quote_style );
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user