You are here

function blogapi_metaweblog_edit_post in Blog API 7

Same name and namespace in other branches
  1. 8 modules/blogapi_metaweblog/blogapi_metaweblog.module \blogapi_metaweblog_edit_post()
  2. 7.2 modules/blogapi_metaweblog/blogapi_metaweblog.module \blogapi_metaweblog_edit_post()
1 string reference to 'blogapi_metaweblog_edit_post'
blogapi_xmlrpc in ./blogapi.module
Implement hook_xmlrpc().

File

./blogapi.module, line 450
Enable users to post using applications that support XML-RPC blog APIs.

Code

function blogapi_metaweblog_edit_post($postid, $username, $password, $content, $publish) {
  return blogapi_blogger_edit_post('0123456789ABCDEF', $postid, $username, $password, $content, $publish);
}