- Removed valid_input_check().

4.7.x
Dries Buytaert 2005-11-30 10:09:28 +00:00
parent 0ff2db93dd
commit bcb6257b31
2 changed files with 0 additions and 16 deletions

View File

@ -214,10 +214,6 @@ function blogapi_blogger_new_post($appkey, $blogid, $username, $password, $conte
$edit['body'] = $content;
}
if (!valid_input_data($edit['title'], $edit['body'])) {
return blogapi_error(t('Terminated request because of suspicious input data.'));
}
$node = node_validate($edit);
if ($errors = form_get_errors()) {
@ -273,10 +269,6 @@ function blogapi_blogger_edit_post($appkey, $postid, $username, $password, $cont
$node->body = $content;
}
if (!valid_input_data($node->title, $node->body)) {
return blogapi_error(t('Terminated request because of suspicious input data.'));
}
$node = node_validate($node);
if ($errors = form_get_errors()) {

View File

@ -214,10 +214,6 @@ function blogapi_blogger_new_post($appkey, $blogid, $username, $password, $conte
$edit['body'] = $content;
}
if (!valid_input_data($edit['title'], $edit['body'])) {
return blogapi_error(t('Terminated request because of suspicious input data.'));
}
$node = node_validate($edit);
if ($errors = form_get_errors()) {
@ -273,10 +269,6 @@ function blogapi_blogger_edit_post($appkey, $postid, $username, $password, $cont
$node->body = $content;
}
if (!valid_input_data($node->title, $node->body)) {
return blogapi_error(t('Terminated request because of suspicious input data.'));
}
$node = node_validate($node);
if ($errors = form_get_errors()) {