1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-18 04:12:00 +02:00

Fixes #1835, Fixes #1700 - Emoticons path issue. Also removed old icons not found in the emoticon pack.

This commit is contained in:
Cameron
2016-09-14 11:57:13 -07:00
parent b41797cc3f
commit fa385db40e
3 changed files with 6 additions and 4 deletions

View File

@@ -693,7 +693,7 @@ class wysiwyg
foreach($emo as $path=>$co)
{
$codes = explode(" ",$co);
$url = SITEURLBASE.e_IMAGE_ABS."emotes/" . $pack . "/" . str_replace("!",".",$path);
$url = e_IMAGE_ABS."emotes/" . $pack . "/" . str_replace("!",".",$path);
$emotes[$i][] = array('shortcut'=>$codes, 'url'=>$url, 'title'=>ucfirst($path));
if($c == 6)