You are here

function blogapi_metaweblog_edit_post in Blog API 7.2

Same name and namespace in other branches
  1. 8 modules/blogapi_metaweblog/blogapi_metaweblog.module \blogapi_metaweblog_edit_post()
  2. 7 blogapi.module \blogapi_metaweblog_edit_post()

Service allback for metaWeblog.editPost

1 string reference to 'blogapi_metaweblog_edit_post'
blogapi_metaweblog_services_resources in modules/blogapi_metaweblog/blogapi_metaweblog.module
Implements hook_services_resources().

File

modules/blogapi_metaweblog/blogapi_metaweblog.module, line 308
Provides MetaWeblog services for BlogAPI

Code

function blogapi_metaweblog_edit_post($postid, $username, $password, $content, $publish) {
  return blogapi_edit_post($postid, $username, $password, $content, $publish);
}