Fix syntax error in emoticon component

This commit is contained in:
Kijin Sung 2021-01-10 16:23:16 +09:00
parent 5e38bd8162
commit b7856e5683

View file

@ -63,7 +63,7 @@ class emoticon extends EditorHandler
$output[] = array(
'url' => $emoticon_url . $file_name,
'width' => $file_width,
'height' => file_height,
'height' => $file_height,
'svg' => file_exists(sprintf('%s/svg/%s', $emoticon_path, $svg_name)) ? ($emoticon_url . 'svg/' . $svg_name) : '',
'alt' => $file_name,
);