diff options
author | Igor Scheller <igor.scheller@igorshp.de> | 2018-09-10 18:09:23 +0200 |
---|---|---|
committer | Igor Scheller <igor.scheller@igorshp.de> | 2018-09-10 22:49:46 +0200 |
commit | 8456a3cf6fcd2588c68ef39ad04b6c0a233d3f5d (patch) | |
tree | 49a5e7eafa15180ee4a56b871a86e4b9ce9641bf /includes | |
parent | c1a1180d1f43a430b38450cb0b64bcd74487b4ae (diff) |
Moved emojis to assets
Diffstat (limited to 'includes')
-rw-r--r-- | includes/sys_template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/sys_template.php b/includes/sys_template.php index 19b0c2fa..e764c6e3 100644 --- a/includes/sys_template.php +++ b/includes/sys_template.php @@ -482,7 +482,7 @@ function ReplaceSmilies($msg) ) { $msg = str_ireplace($search, sprintf( '<img src="%s">', - sprintf($assets->getAsset('emojis/%s.gif'), $replace) + sprintf($assets->getAsset('assets/emojis/%s.gif'), $replace) ), $msg); } |