Changeset 21717
- Timestamp:
- 09/06/09 15:57:21 (4 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfCKEditorPlugin/lib/sfWidgetFormCKEditor.class.php
r21716 r21717 22 22 $html .= " CKEDITOR.replace('".$name."',{"; 23 23 24 $jsoptions = $this->getOption(' config');24 $jsoptions = $this->getOption('jsoptions'); 25 25 if($jsoptions) 26 26 { 27 $sep = ''; 27 28 foreach($jsoptions as $k => $v) 28 29 { 29 $html .= $ k." : '".$v."'";30 $html .= $sep.$k." : '".$v."'"; 30 31 } 32 $sep = ','; 31 33 } 32 34