Do not use HTML entities inside script tag

Fixes #107
This commit is contained in:
Dmitriy Simushev 2015-02-03 16:17:52 +00:00
parent 232d69cf72
commit 933ced4575

View File

@ -237,7 +237,7 @@ abstract class AbstractGenerator implements GeneratorInterface
{
return array(
'id' => $this->getOption('unique_id'),
'url' => str_replace('&', '&', $this->getChatUrl()),
'url' => $this->getChatUrl(),
'preferIFrame' => $this->getOption('prefer_iframe'),
'modSecurity' => $this->getOption('mod_security'),
) + $this->getPopupStyle();