ok i've got the quick reply working fine on a third party page, however if i click the quick reply icon in order to quote the post, it pulls the post from the database instead of the info i wanted, now i couldn't make out the js as i know nowt to do with js but in the php i'm guessing the lines
PHP Code:
$originalposter = fetch_quote_username($getpost['username']);
$pagetext = trim(strip_quotes($getpost['pagetext']));
eval('$quotemessage = "' . fetch_template('newpost_quote', 1, 0) . '";');
$newpost['message'] = "$quotemessage $newpost[message]";
unset($_POST['WYSIWYG_HTML']);
has something to do with it, however i've trudged through the php files and can't find the $getpost query.
am i looking for the right thing?
oh maybe it'd be easier to ask, how should i try and get it to pull the info i want rather than the info vbulletin set it to extract initially?