1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-20 20:51:53 +02:00

Fixes #3473 Menu Button URL with {e_BASE} not converting correctly.

This commit is contained in:
Cameron 2018-10-02 11:48:09 -07:00
parent 30b8d03df9
commit a78b44f48e

View File

@ -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');
}