MyBB Community Forums

Full Version: Solved
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Problem solved Smile
What's this meant to do?
        $mybb->input['uid']->$empfaenger;
        $mybb->user['uid']->$sender;

I'm guessing you want this?
$empfaenger = intval($mybb->input['uid']);
$sender = $mybb->user['uid'];
Thanks, solved problem Wink