1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-28 10:20:45 +02:00
Files
php-e107/e107_files/bbcode/size.bb
2006-12-02 04:36:16 +00:00

9 lines
145 B
BlitzBasic

if(is_numeric($parm) && $parm > 0 && $parm < 38)
{
return "<span style='font-size:{$parm}px'>$code_text</span>";
}
else
{
return $code_text;
}