From a78b44f48ee2cc09c571fa7307b73e436a143899 Mon Sep 17 00:00:00 2001 From: Cameron Date: Tue, 2 Oct 2018 11:48:09 -0700 Subject: [PATCH] Fixes #3473 Menu Button URL with {e_BASE} not converting correctly. --- e107_core/shortcodes/batch/page_shortcodes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_core/shortcodes/batch/page_shortcodes.php b/e107_core/shortcodes/batch/page_shortcodes.php index 88ba389ee..ba4bf3d2c 100644 --- a/e107_core/shortcodes/batch/page_shortcodes.php +++ b/e107_core/shortcodes/batch/page_shortcodes.php @@ -341,7 +341,7 @@ class cpage_shortcodes extends e_shortcode return $this->sc_cpageurl(); } - return e107::getParser()->replaceConstants($this->var['menu_button_url']); + return e107::getParser()->replaceConstants($this->var['menu_button_url'], 'abs'); }