- Typo after node_load simplification patch

4.7.x
Steven Wittens 2005-07-17 23:44:47 +00:00
parent b7c0975e23
commit 6978fcb6ec
2 changed files with 2 additions and 2 deletions

View File

@ -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());
}

View File

@ -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());
}