1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 14:17:49 +02:00

Bootstrap styling of FAQ tags.

This commit is contained in:
Cameron
2013-05-20 16:20:34 -07:00
parent 7d56674046
commit de24998308

View File

@@ -67,7 +67,7 @@ class faqs_shortcodes extends e_shortcode
function sc_faq_answer()
{
return e107::getParser()->toHTML($this->var['faq_answer'],true);
return e107::getParser()->toHTML($this->var['faq_answer'],true,'BODY');
}
@@ -76,7 +76,7 @@ class faqs_shortcodes extends e_shortcode
$tags = $this->var['faq_tags'];
if(!$tags) return '';
if(!$parm) $parm = ' | ';
if(!$parm) $parm = ' ';
$ret = $urlparms = array();
if($this->category) $urlparms['category'] = $this->category;
@@ -86,7 +86,7 @@ class faqs_shortcodes extends e_shortcode
$urlparms['tag'] = $tag;
$url = e107::getUrl()->create('faqs/list/all', $urlparms);
$tag = htmlspecialchars($tag, ENT_QUOTES, 'utf-8');
$ret[] = '<a href="'.$url.'" title="'.$tag.'">'.$tag.'</a>';
$ret[] = '<a href="'.$url.'" title="'.$tag.'"><span class="label label-info">'.$tag.'</span></a>';
}
return implode($parm, $ret);