Development

Changeset 21717

You must first sign up to be able to contribute.

Changeset 21717

Show
Ignore:
Timestamp:
09/06/09 15:57:21 (4 years ago)
Author:
cdafflon
Message:

--

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • plugins/sfCKEditorPlugin/lib/sfWidgetFormCKEditor.class.php

    r21716 r21717  
    2222    $html  .= " CKEDITOR.replace('".$name."',{"; 
    2323     
    24     $jsoptions = $this->getOption('config'); 
     24    $jsoptions = $this->getOption('jsoptions'); 
    2525    if($jsoptions) 
    2626    { 
     27      $sep = ''; 
    2728      foreach($jsoptions as $k => $v) 
    2829      { 
    29         $html .= $k." : '".$v."'"; 
     30        $html .= $sep.$k." : '".$v."'"; 
    3031      } 
     32      $sep = ','; 
    3133    } 
    3234