Quote:
Originally Posted by Lynne
Well, you haven't mentioned with hook location you are going to use, but I would imagine the variable for the thread title would be something like $thread['title'] or $threadinfo['title']
|
Hook, as in Global_Start?
The plugin is just a workaround because vBulletin doesn't let add php to templates.
My problem can be solved if you could just tell me how to print thread title using php. Something like:
Code:
ob_start();
[echo thread title]
$includedphp = ob_get_contents();
ob_end_clean();
It is the plugin code. With Global_Start.
--------------- Added [DATE]1273843421[/DATE] at [TIME]1273843421[/TIME] ---------------
Code:
echo $threadinfo['title'];
Works!
Thanks a lot.