Skip to content
Snippets Groups Projects
Commit 6978fcb6 authored by Steven Wittens's avatar Steven Wittens
Browse files

- Typo after node_load simplification patch

parent b7c0975e
No related branches found
No related tags found
No related merge requests found
......@@ -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());
}
......
......@@ -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());
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment