From 8dba1d9719bb64100c3a19e5b1bf5d04420c0f85 Mon Sep 17 00:00:00 2001 From: Stefan Galinski <stefan.galinski@gmail.com> Date: Sat, 6 Sep 2014 14:32:22 +0200 Subject: [PATCH] [BUGFIX] Commas of new options shouldn't be applied to the previous line Forge: #61355 --- class.tinymce.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/class.tinymce.php b/class.tinymce.php index 5906e36..7b1400e 100644 --- a/class.tinymce.php +++ b/class.tinymce.php @@ -282,7 +282,7 @@ class tinyMCE { $value = '\'' . $value . '\''; } - $this->tinymceConfiguration['configurationData'] .= ",\n" . $key . ': ' . $value . "\n"; + $this->tinymceConfiguration['configurationData'] .= "\n," . $key . ': ' . $value . "\n"; } /** -- GitLab