browser console shows:
See modules/Emails/EmailUI.php
change the way quotes are escaped:
$v = str_replace("'", "\'",$v);
=>
$v = str_replace("'", "\'",str_replace("\'", "'", $v));
The PHP possible fix was not saved correctly by Github.
We will submit a PR
Hi @QuickCRM, thanks for the PR! just to note for the future, if you want to post code in a GitHub issue you can encapsulate it with three backticks ``` like this:
<?php
echo 'Hello World!';
and it should keep it intact.
It's gets even better if you add a language name, like this:
```php
or
```bash
<?php
function helloWorld() {
echo 'Hello World!';
}
you get syntax highlighting.
As a french dev & user so much error like this, for example in /index.php?module=Configurator&action=EditView
In the console "Uncaught SyntaxError: missing ) after argument list"


Most helpful comment
The PHP possible fix was not saved correctly by Github.
We will submit a PR