diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-07-17 23:44:47 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2005-07-17 23:44:47 +0000 |
commit | 6978fcb6ec1d8ca85c40d8ca8d28d926099d5cba (patch) | |
tree | a7549a982a7599acdf4b4a8dc3aab32ca02a436a /modules/blogapi | |
parent | b7c0975e23e777eca7ef731e697df3304afc792b (diff) | |
download | brdo-6978fcb6ec1d8ca85c40d8ca8d28d926099d5cba.tar.gz brdo-6978fcb6ec1d8ca85c40d8ca8d28d926099d5cba.tar.bz2 |
- Typo after node_load simplification patch
Diffstat (limited to 'modules/blogapi')
-rw-r--r-- | modules/blogapi/blogapi.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index df376580f..e8a2009cb 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -233,7 +233,7 @@ function blogapi_blogger_edit_post($appkey, $postid, $username, $password, $cont return blogapi_error($user); } - $node = node_load('nid' => $postid); + $node = node_load($postid); if (!$node) { return blogapi_error(message_na()); } |