Changeset 685
- Timestamp:
- 2008-07-18 18:16:32 (7 weeks ago)
- Location:
- plugins
- Files:
-
- 2 modified
-
NicEdit/trunk/NicEdit.plugin.php (modified) (1 diff)
-
fckeditor/trunk/fckeditor.plugin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/NicEdit/trunk/NicEdit.plugin.php
r684 r685 90 90 echo <<<NICEDIT 91 91 <script type="text/javascript"> 92 $('[@for=content]').removeAttr('for'); 92 93 new nicEditor({$options}).panelInstance('content'); 93 94 habari.editor = { -
plugins/fckeditor/trunk/fckeditor.plugin.php
r246 r685 20 20 return array( 21 21 'name' => 'FCKeditor', 22 'version' => '0.0 1',22 'version' => '0.02', 23 23 'url' => 'http://ayu.commun.jp/habari-fckeditor', 24 24 'author' => 'ayunyan', … … 49 49 public function action_admin_header($theme) 50 50 { 51 if ( $theme-> admin_page != 'publish' ) return;51 if ( $theme->page != 'publish' ) return; 52 52 Stack::add( 'admin_header_javascript', $this->get_url() . '/fckeditor/fckeditor.js' ); 53 53 } … … 62 62 public function action_admin_footer($theme) 63 63 { 64 if ( $theme-> admin_page != 'publish' ) return;64 if ( $theme->page != 'publish' ) return; 65 65 ?> 66 66 <script type="text/javascript">
