Skip to content
Snippets Groups Projects
Commit 8dba1d97 authored by Stefan Galinski's avatar Stefan Galinski
Browse files

[BUGFIX] Commas of new options shouldn't be applied to the previous line

Forge: #61355
parent 02c5d321
No related branches found
No related tags found
No related merge requests found
......@@ -282,7 +282,7 @@ class tinyMCE {
$value = '\'' . $value . '\'';
}
$this->tinymceConfiguration['configurationData'] .= ",\n" . $key . ': ' . $value . "\n";
$this->tinymceConfiguration['configurationData'] .= "\n," . $key . ': ' . $value . "\n";
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment