From 1c076bc89f7a7374859e025c99f2eb5ea092188e Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 26 Apr 2009 09:14:32 +0000 Subject: - Patch #19837 by xmacinfo, j.somers: make 'not verified' togglable as a theme setting. --- modules/blogapi/blogapi.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/blogapi/blogapi.module') 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) { -- cgit v1.2.3