1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 06:07:32 +02:00

Bugfix: Corrected line-break issue

This commit is contained in:
CaMer0n
2011-03-12 11:01:07 +00:00
parent 76db31ade1
commit dc42b3eca3

View File

@@ -186,7 +186,11 @@ class wysiwyg
tinyMCE.init({ \n\n";
foreach($this->config as $key=>$val)
{
{
if($val != 'true' && $val !='false')
{
$val = "'".$val."'";
}
$text .= "\t\t ".$key." : '".$val."',\n";
}
/*