1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 12:48:24 +01:00

Fix for static URLs on Emoticons

This commit is contained in:
Cameron 2017-10-26 11:08:49 -07:00
parent 27910c87c7
commit 933691b93f

View File

@ -5319,7 +5319,7 @@ class e_emotefilter
return;
}
$base = deftrue('e_HTTP_STATIC', SITEURLBASE);
$base = defined('e_HTTP_STATIC') && is_string(e_HTTP_STATIC) ? e_HTTP_STATIC : SITEURLBASE;
foreach($this->emotes as $key => $value)
{