Quote:
Originally Posted by dartho
ah - try soemthing like this:
change
PHP Code:
$vbulletin->GPC['message'] = $vbulletin->GPC['message'] . "\n". "[size=1][i]" . $vbulletin->options['mo37_post_text']. "[/i][/size]" . "\n";
to
PHP Code:
$vbulletin->GPC['message'] = "[size=1][i]" . $vbulletin->options['mo37_post_text'] . "\n" . ."\n" . "[/i][/size]" . $vbulletin->GPC['message'];
in the same 2 plugins as before
|
You've got that slightly wrong. Replace it with this:
PHP Code:
$vbulletin->GPC['message'] = "[size=1][i]" . $vbulletin->options['mo37_post_text'] . "\n". "[/i][/size]" . $vbulletin->GPC['message'];
(The correction being yours had an extra . "/n" that threw up an error.)
How can I get it to skip a line between the UA and the person's post, though (I'm still learning this stuff)
For a sample, you can check out
www.symbian-guru.com/forum from your phone (using the auto-detect plugin, too)