in "server.php" at function "getpost" i have found a the line "print_r($threadinfo)" ->
Code:
public function getPost($key, $postid)
{
global $vbulletin;
if($this->access_key != $key)
{
throw new SoapFault("Server","Bad Key");
}
$postinfo = verify_id('post', $postid, 0, 1);
$threadinfo = verify_id('thread', $postinfo['threadid'], 0, 1);
print_r($threadinfo);
....
i think u have set this line for debug mode and this should not set in the released version, right?