Hi Guys,
sorry for my bad english. Thx for this hack but i have a Problem:
I insert this php code in my Plug in:
// The array below are the ids of non-public forums, update these to be your admin forum ids or anything non-public by default
$excludedForums = array(0);
// If you are having trouble getting bitly URL shortening to work... disable it!
$useBitly = false;
if (!in_array($foruminfo[forumid], $excludedForums)) {
$shortUrl = 'http://www.MeineDomain.de/showthread.php?t='.$newpost[threadid];
if ($useBitly) {
//
http://classes.verkoyen.eu/bitly
require_once 'bitly.php';
$bitly = new Bitly('<bit.ly username>', '<bit.ly API key>');
$shortUrl = $bitly->shorten($shortUrl);
}
$tweet = '';
if (isset($newpost['prefixid']) && $newpost['prefixid'] != '') {
$tweet = $vbphrase['prefix_'.$newpost['prefixid'].'_title_plain'].' ';
}
$tweet .= $newpost['title'].' '.$shortUrl;
//
http://classes.verkoyen.eu/twitter/
require_once 'twitter.php';
$twitter = new Twitter('BlaBlaBla','BlaBlaBla');
$twitter->updateStatus($tweet);
and the system tell me :
Parse error: syntax error, unexpected $end in /var/www/web1/html/newthread.php(262): eval()'d code on line 27
Is the php Code wrong or What?s the problem?