Fixing comma problem.

This commit is contained in:
julmis
2006-03-06 07:12:04 +00:00
parent 5d816150cd
commit f2214522d8
+4 -4
View File
@@ -256,6 +256,10 @@ class tinymce extends editorObject {
continue;
}
if ( $cnt > 1 ) {
echo ',' ."\n";
}
echo "\t" . $key .' : ';
if ( is_bool($value) ) {
@@ -264,10 +268,6 @@ class tinymce extends editorObject {
echo '"'. $value .'"';
}
if ( $cnt < $max ) {
echo ',';
}
echo "\n";
$cnt++;
}
}