1Unreal
05-22-2009, 04:29 PM
When new posts are created vBulletin replaces new lines with line breaks.
I have created a new BB Code with plugins and I want to stop vB from creating line breaks within this BB Code.
Because as you can see it seperates each item with commas. I want to do this with new lines.
if (!function_exists('handle_bbcode_parts')) {
function handle_bbcode_parts(&$parser, $value, $option)
{
$value = explode(",", $value);
foreach($value as $a => $b){
if($b == ''){
unset($a[$value]);
}
}
$value = array_values($value);
$num = 0;
$return = '';
foreach($value as $item){
$num++;
$item = trim($item);
$return .= '<a href="'.$item.'" class="partgraphics" target="_blank">'.$num.'</a>';
}
return $return;
}
}
I have created a new BB Code with plugins and I want to stop vB from creating line breaks within this BB Code.
Because as you can see it seperates each item with commas. I want to do this with new lines.
if (!function_exists('handle_bbcode_parts')) {
function handle_bbcode_parts(&$parser, $value, $option)
{
$value = explode(",", $value);
foreach($value as $a => $b){
if($b == ''){
unset($a[$value]);
}
}
$value = array_values($value);
$num = 0;
$return = '';
foreach($value as $item){
$num++;
$item = trim($item);
$return .= '<a href="'.$item.'" class="partgraphics" target="_blank">'.$num.'</a>';
}
return $return;
}
}