Ticket #14933: class-IXR.php.patch
| File class-IXR.php.patch, 572 bytes (added by dave1010, 20 months ago) |
|---|
-
C:/Users/base/Desktop/class-IXR.php
old new 368 368 } else { 369 369 // It's a function - does it exist? 370 370 if (is_array($method)) { 371 if (! method_exists($method[0], $method[1])) {371 if (!is_callable(array($method[0], $method[1]))) { 372 372 return new IXR_Error(-32601, 'server error. requested object method "'. 373 373 $method[1].'" does not exist.'); 374 374 }
