Patch Services_JSON to use the proper function name and avoid a fatal error. see #24210.

git-svn-id: http://core.svn.wordpress.org/trunk@24587 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin 2013-07-08 16:55:34 +00:00
parent a8cb46d9a3
commit ccff07a819
1 changed files with 2 additions and 2 deletions

View File

@ -492,7 +492,7 @@ class Services_JSON
return ($this->use & SERVICES_JSON_SUPPRESS_ERRORS)
? 'null'
: new Services_JSON_Error(class_name($var).
: new Services_JSON_Error(get_class($var).
" toJSON returned an object with a toJSON method.");
}
@ -933,4 +933,4 @@ if (class_exists('PEAR_Error')) {
}
endif;
endif;