input test
Output in thread
Code:
line\n \nbreak \n \ntest
working on the php currently is like
PHP Code:
if($vbulletin->GPC['wysiwyg']) {
$bodytext = convert_wysiwyg_html_to_bbcode($vbulletin->GPC['message']);
} else {
$bodytext = $vbulletin->GPC['message'];
}
$bodytext = $db->escape_string($bodytext);
// skipping to thread creation
// various attemts
// $bodytext = str_replace('\n', '<br />', $bodytext);
// $bodytext = str_replace('\n', ' ', $bodytext);
// $bodytext = nl2br($bodytext);
$bodytext = nl2br($bodytext, false);
// render thread content
$templater = vB_Template::create('nytevent_new_thread');
$templater->register('message', $bodytext);
$pagetext .= $templater->render();
$threaddm->setr('pagetext', $pagetext);
// from here its all in vbulletin domain..
didnt work..
EDIT / P.S the str replace with <br /> didnt work cause it just showed the damn html code
inside the threads, and trying to figure out if i can make a linebreak
BBcode if i can get
that working i can str_replace that to the line break bbcode
--------------- Added [DATE]1271539826[/DATE] at [TIME]1271539826[/TIME] ---------------
Well not excaktly great but its working..
BBcode with replacement -- <div >{param}<br /></div>
and then str_rep in php --
$bodytext = str_replace('\n', '', $bodytext);
and it turns out fine.. lol