Quote:
Originally Posted by thisgeek
Just bumping this. Got my users after me to add the poster to the tweets, but I have no idea what variables are available to the plugin.
Is this possible with the plugin as it is right now?
|
Nevermind, figured out what variable to use:
Change the line:
PHP Code:
$tweet .= $newpost['title'].' '.$shortUrl;
to
PHP Code:
$tweet .= $newpost['title'].' by '.$vbulletin->userinfo['username'].' '.$shortUrl;
Simple enough.