mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
14 lines
380 B
BlitzBasic
14 lines
380 B
BlitzBasic
//<?
|
|
$class = e107::getBB()->getClass('quote');
|
|
e107::includeLan(e_LANGUAGEDIR.e_LANGUAGE."/lan_parser_functions.php");
|
|
|
|
if(deftrue('BOOTSTRAP'))
|
|
{
|
|
return '<blockquote>
|
|
<p>'.$code_text.'</p>
|
|
<small><cite title="'.$parm.'">'.$parm.'</cite></small>
|
|
</blockquote>';
|
|
}
|
|
|
|
return "<div class='indent {$class}'><em>$parm ".LAN_WROTE."</em> ...<br />$code_text</div>";
|