Add xmlrpc_text_filters filter. Props rob1n. fixes #1429

git-svn-id: http://svn.automattic.com/wordpress/trunk@5107 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-03-25 23:50:22 +00:00
parent 7f9aa3c350
commit b154fd93b1
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());
}