From b7856e5683973a6a2acc73ba661fa137aba8c1d2 Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Sun, 10 Jan 2021 16:23:16 +0900 Subject: [PATCH] Fix syntax error in emoticon component --- modules/editor/components/emoticon/emoticon.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/editor/components/emoticon/emoticon.class.php b/modules/editor/components/emoticon/emoticon.class.php index 14a7793e6..83895667b 100644 --- a/modules/editor/components/emoticon/emoticon.class.php +++ b/modules/editor/components/emoticon/emoticon.class.php @@ -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, );