From bcb6257b31588fadc5ee00efa16571e5eabf0420 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Wed, 30 Nov 2005 10:09:28 +0000 Subject: - Removed valid_input_check(). --- modules/blogapi.module | 8 -------- modules/blogapi/blogapi.module | 8 -------- 2 files changed, 16 deletions(-) (limited to 'modules') diff --git a/modules/blogapi.module b/modules/blogapi.module index ec19448f1..65bfe3a4c 100644 --- a/modules/blogapi.module +++ b/modules/blogapi.module @@ -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()) { diff --git a/modules/blogapi/blogapi.module b/modules/blogapi/blogapi.module index ec19448f1..65bfe3a4c 100644 --- a/modules/blogapi/blogapi.module +++ b/modules/blogapi/blogapi.module @@ -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()) { -- cgit v1.2.3