Hey tamarian - Thanks for the excellent additions to vB!
I'm working with the blogAPI.module now and I am running into some difficulty with one particular function.
valid_input_data() does not exist within the drupal framework. Obviously this causes the checking of valid xml to break throwing an error back to the client blogging tool.
Am I just overlooking something here? I'd like to use the remote management, but I do not want to remove the two calls to that function.
Code:
if (!valid_input_data($edit['title'], $edit['body'])) {
return blogapi_error(t('Terminated request because of suspicious input data.'));
}
and
if (!valid_input_data($node->title, $node->body)) {
return blogapi_error(t('Terminated request because of suspicious input data.'));
}
I would be very grateful for any assistance you can provide.
Max