Changeset 2077 for MediaWiki/trunk/FCKeditor.php
- Timestamp:
- 2008-06-17 15:01:25 (6 months ago)
- Files:
-
- 1 modified
-
MediaWiki/trunk/FCKeditor.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
MediaWiki/trunk/FCKeditor.php
r2075 r2077 4 4 if (!defined('MEDIAWIKI')) { 5 5 echo <<<HEREDOC 6 To install myextension, put the following line in LocalSettings.php:6 To install FCKeditor extension, put the following line in LocalSettings.php: 7 7 require_once( "\$IP/extensions/FCKeditor/FCKeditor.php" ); 8 8 HEREDOC; … … 53 53 54 54 if (empty ($wgFCKEditorExtDir)) { 55 $wgFCKEditorExtDir = "extensions/FCKeditor" ;55 $wgFCKEditorExtDir = "extensions/FCKeditor"; 56 56 } 57 57 if (empty ($wgFCKEditorDir)) { 58 $wgFCKEditorDir = "extensions/FCKeditor/fckeditor" ;58 $wgFCKEditorDir = "extensions/FCKeditor/fckeditor"; 59 59 } 60 60 if (empty ($wgFCKEditorToolbarSet)) { 61 $wgFCKEditorToolbarSet = "Wiki" ;61 $wgFCKEditorToolbarSet = "Wiki"; 62 62 } 63 63 if (empty ($wgFCKEditorHeight)) { 64 $wgFCKEditorHeight = "0" ; // "0" for automatic ("300" minimum).64 $wgFCKEditorHeight = "0"; // "0" for automatic ("300" minimum). 65 65 } 66 66 … … 78 78 79 79 $wgExtensionCredits['other'][] = array( 80 "name" => "FCKeditor extension",81 "author" => "FCKeditor.net (inspired by the code written by Mafs [Meta])",82 "version"=> 'fckeditor/mw-extension $Rev$ 2008',83 "url" => "http://meta.wikimedia.org/wiki/FCKeditor",84 "description" => "FCKeditor extension" 80 'name' => 'FCKeditor', 81 'author' => array('FCKeditor.net', 'Wikia'), 82 'version' => 'fckeditor/mw-extension $Rev$ 2008', 83 'url' => 'http://www.mediawiki.org/wiki/Extension:FCKeditor_%28by_FCKeditor_and_Wikia%29', 84 'description' => 'FCKeditor extension for editing wiki pages (WYSIWYG editor)' 85 85 ); 86 86 … … 91 91 $oFCKeditorExtension->registerHooks(); 92 92 93 94 95 96 97 98 99