| $langSpaceBlogContent |
php
include("../../classes/resource/fckeditor/fckeditor.php") ;
$oFCKeditor = new FCKeditor('txtSubject') ;
$oFCKeditor->BasePath = '../../classes/resource/fckeditor/' ;
$oFCKeditor->ToolbarSet = 'Simple';
$oFCKeditor->Width = 485 ;
$oFCKeditor->Height = 330 ;
$oFCKeditor->Value = $this->_tpl_vars['blog_array']['subject'] ;
$oFCKeditor->Create() ;
/php
|