Add xmlrpc_text_filters filter. Props rob1n. fixes #1429

git-svn-id: https://develop.svn.wordpress.org/trunk@5107 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-03-25 23:50:22 +00:00
parent b4ef10ef85
commit 068b0f0957
1 changed files with 1 additions and 1 deletions

View File

@ -1612,7 +1612,7 @@ class wp_xmlrpc_server extends IXR_Server {
/* mt.supportedTextFilters ...returns an empty array because we don't
support per-post text filters yet */
function mt_supportedTextFilters($args) {
return array();
return apply_filters('xmlrpc_text_filters', array());
}