1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-23 06:33:22 +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

@@ -298,7 +298,7 @@ TEMPL;
foreach($arr['img'] as $img)
{
if(substr($img['src'],0,4) == 'http')
if(substr($img['src'],0,4) == 'http' || strpos($img['src'], e_IMAGE_ABS.'emotes/')!==false) // dont resize external images or emoticons.
{
continue;
}