diff options
author | Dries Buytaert <dries@buytaert.net> | 2009-04-26 09:14:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2009-04-26 09:14:32 +0000 |
commit | 1c076bc89f7a7374859e025c99f2eb5ea092188e (patch) | |
tree | 74f0307600b2b77a12bceeba6f88deafd22733f4 /modules/blogapi/blogapi.module | |
parent | 9af602fe17e6346360e640e403843494c84ecca0 (diff) | |
download | brdo-1c076bc89f7a7374859e025c99f2eb5ea092188e.tar.gz brdo-1c076bc89f7a7374859e025c99f2eb5ea092188e.tar.bz2 |
- Patch #19837 by xmacinfo, j.somers: make 'not verified' togglable as a theme setting.
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 575a07b74..58ce6baae 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -224,7 +224,7 @@ function blogapi_blogger_new_post($appkey, $blogid, $username, $password, $conte $edit['date'] = format_date(REQUEST_TIME, 'custom', 'Y-m-d H:i:s O'); } - node_invoke_node($edit, 'blogapi_new'); + module_invoke_all('node_blogapi_new', $edit); $valid = blogapi_status_error_check($edit, $publish); if ($valid !== TRUE) { @@ -282,7 +282,7 @@ function blogapi_blogger_edit_post($appkey, $postid, $username, $password, $cont $node->body = $content; } - node_invoke_node($node, 'blogapi_edit'); + module_invoke_all('node_blogapi_edit', $node); $valid = blogapi_status_error_check($node, $original_status); if ($valid !== TRUE) { |