diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-07-23 07:42:08 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-07-23 07:42:08 +0000 |
commit | 8b51a9dfb1f3dae6349216d86375bce9cf5edb74 (patch) | |
tree | 66ceae4311fb17f83e56351bf2437e315f1dd448 /modules/blogapi/blogapi.module | |
parent | d743fcc5c758c076f43642ee6fff39740e1263f5 (diff) | |
download | brdo-8b51a9dfb1f3dae6349216d86375bce9cf5edb74.tar.gz brdo-8b51a9dfb1f3dae6349216d86375bce9cf5edb74.tar.bz2 |
- Patch #285467 by mustafau: fixed typo a MT blog API function.
Diffstat (limited to 'modules/blogapi/blogapi.module')
-rw-r--r-- | modules/blogapi/blogapi.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index 547d6b4c0..0569b499a 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -131,7 +131,7 @@ function blogapi_xmlrpc() { t('Retrieve information about the text formatting plugins supported by the server.')), array( 'mt.publishPost', - 'blogap_mti_publish_post', + 'blogapi_mt_publish_post', array('boolean', 'string', 'string', 'string'), t('Publish (rebuild) all of the static files related to an entry from your blog. Equivalent to saving an entry in the system (but without the ping).'))); } @@ -490,7 +490,7 @@ function blogapi_mt_supported_text_filters() { /** * Blogging API callback. Publishes the given node. */ -function blogap_mti_publish_post($postid, $username, $password) { +function blogapi_mt_publish_post($postid, $username, $password) { $user = blogapi_validate_user($username, $password); if (!$user->uid) { |