From d02ede9750c11318ee352502a6d54f03381a2f09 Mon Sep 17 00:00:00 2001 From: Cameron Date: Thu, 22 Aug 2019 09:34:34 -0700 Subject: [PATCH] Linkwords fix. --- e107_plugins/faqs/faqs_shortcodes.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e107_plugins/faqs/faqs_shortcodes.php b/e107_plugins/faqs/faqs_shortcodes.php index c949dca37..f3d5aff0d 100644 --- a/e107_plugins/faqs/faqs_shortcodes.php +++ b/e107_plugins/faqs/faqs_shortcodes.php @@ -109,7 +109,7 @@ class faqs_shortcodes extends e_shortcode } else { - $text = $tp->toHTML($this->var['faq_question'],true, 'BODY'); + $text = $tp->toHTML($this->var['faq_question'],true, 'TITLE'); } return $text; } @@ -120,7 +120,7 @@ class faqs_shortcodes extends e_shortcode $tp = e107::getParser(); $url = e107::url('faqs','item', $this->var, 'full'); - $question = $tp->toHTML($this->var['faq_question'],true,'BODY'); + $question = $tp->toHTML($this->var['faq_question'],true,'TITLE'); return $tp->parseTemplate("{SOCIALSHARE: size=xs&type=basic&url=".$url."&title=".$question."&tags=".$this->var['faq_tags']."}",true);