Ok, I have changed it to the following:
editpost.php
PHP Code:
$xyz = "Test message";
$xyz = handle_bbcode_view_message($xyz,$post[postid]);
functions_bbcodeparse.php
PHP Code:
function handle_bbcode_view_message($code,$postid)
{
$postInfo = fetch_postinfo($postid);
$code .= $postid.$postInfo['post'];
return $code;
}
Now I get back the value of
$post[postid] after my initial phrase (as a test), so the variable is being passed. The message text is still not coming back from the database.
Can you? I have not seen this as an option... if that is the case, then I am going to feel a bit stupid...
I have gone through and do not see an option to turn on edit tracking... where would it be hiding?