Parse BBCodes & Smilies Add-on for Topics descriptions
Код: Выделить всё
?>
Код: Выделить всё
/*
* Parse BBCodes and smilies in topic description
*/
function parse_topic_desc($desc)
{
global $config;
$parse_bbcode = ($config['allow_bbcode']) ? true : false; // Parse BBCodes in topic description
$parse_url = ($config['allow_post_links']) ? true : false; // Parse URLs in topic description
$parse_smilies = ($config['allow_smilies']) ? true : false; // Parse smilies in topic description
$uid = $bitfield = $options = '';
generate_text_for_storage($desc, $uid, $bitfield, $options, $parse_bbcode, $parse_url, $parse_smilies);
return generate_text_for_display($desc, $uid, $bitfield, $options);
}
Код: Выделить всё
'TOPIC_DESC' => censor_text($row['topic_desc']),
Код: Выделить всё
'TOPIC_DESC' => parse_topic_desc($row['topic_desc']),
Код: Выделить всё
'TOPIC_DESC' => censor_text($topic_data['topic_desc']),
Код: Выделить всё
'TOPIC_DESC' => parse_topic_desc($topic_data['topic_desc']),
Код: Выделить всё
'TOPIC_DESC' => censor_text($row['topic_desc']),
Код: Выделить всё
'TOPIC_DESC' => parse_topic_desc($row['topic_desc']),
Код: Выделить всё
'TOPIC_DESC' => censor_text($row['topic_desc']),
Код: Выделить всё
'TOPIC_DESC' => parse_topic_desc($row['topic_desc']),
TFan