From df6377295560d3f46c1fc9c1ff2dadb41447e7d5 Mon Sep 17 00:00:00 2001 From: Cameron Date: Wed, 18 Oct 2017 07:05:39 -0700 Subject: [PATCH] Fixes #2823 FAQs breadcrumb. --- e107_plugins/faqs/faqs_shortcodes.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e107_plugins/faqs/faqs_shortcodes.php b/e107_plugins/faqs/faqs_shortcodes.php index 202cc0044..7b76ae1c1 100644 --- a/e107_plugins/faqs/faqs_shortcodes.php +++ b/e107_plugins/faqs/faqs_shortcodes.php @@ -386,7 +386,8 @@ class faqs_shortcodes extends e_shortcode function sc_faq_breadcrumb() //TODO Category Detection. and proper SEF Urls with category names. { $array = array(); - $array[0] = array('url'=> e_REQUEST_SELF, 'text'=>LAN_PLUGIN_FAQS_NAME); + // $array[0] = array('url'=> e_REQUEST_SELF, 'text'=>LAN_PLUGIN_FAQS_NAME); + $array[0] = array('url'=> e107::url('faqs','index'), 'text'=>LAN_PLUGIN_FAQS_NAME); return e107::getForm()->breadcrumb($array);