Quote:
Originally Posted by Slapyo
|
since I am doing this outside of the scope of vb, I have a couple questions on your code from the RSS News Feed hack.
PHP Code:
// Setup the thread
$post['signature'] = true;
$post['emailupdate'] = 9999;
$post['title'] = $title;
$post['message'] = $article;
$post['poststarttime'] = TIMENOW;
//? $post['rss_date'] = $rss_dateline;
$post['posthash'] = md5($post['poststarttime'] . $bbuserinfo['userid'] . $bbuserinfo['salt']);
In particular, the last line:
$post['posthash'] = md5($post['poststarttime'] . $bbuserinfo['userid'] . $bbuserinfo['salt']);
I dont have access to the $bbuserinfo array (at this point) and I was wondering if there is anyway around this last line?
Also, This line im not sure about either - im not sure I need to include it?
//? $post['rss_date'] = $rss_dateline;