Show
Ignore:
Timestamp:
2008-06-17 15:01:25 (6 months ago)
Author:
wwalc
Message:

Fix for #2226 (improved formatting, extension credits)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • MediaWiki/trunk/FCKeditor.php

    r2075 r2077  
    44if (!defined('MEDIAWIKI')) { 
    55        echo <<<HEREDOC 
    6 To install my extension, put the following line in LocalSettings.php: 
     6To install FCKeditor extension, put the following line in LocalSettings.php: 
    77require_once( "\$IP/extensions/FCKeditor/FCKeditor.php" ); 
    88HEREDOC; 
     
    5353 
    5454if (empty ($wgFCKEditorExtDir)) { 
    55     $wgFCKEditorExtDir = "extensions/FCKeditor" ; 
     55    $wgFCKEditorExtDir = "extensions/FCKeditor"; 
    5656} 
    5757if (empty ($wgFCKEditorDir)) { 
    58     $wgFCKEditorDir = "extensions/FCKeditor/fckeditor" ; 
     58    $wgFCKEditorDir = "extensions/FCKeditor/fckeditor"; 
    5959} 
    6060if (empty ($wgFCKEditorToolbarSet)) { 
    61     $wgFCKEditorToolbarSet = "Wiki" ; 
     61    $wgFCKEditorToolbarSet = "Wiki"; 
    6262} 
    6363if (empty ($wgFCKEditorHeight)) { 
    64     $wgFCKEditorHeight = "0" ; // "0" for automatic ("300" minimum). 
     64    $wgFCKEditorHeight = "0"; // "0" for automatic ("300" minimum). 
    6565} 
    6666 
     
    7878 
    7979$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)' 
    8585); 
    8686 
     
    9191$oFCKeditorExtension->registerHooks(); 
    9292 
    93  
    94  
    95  
    96  
    97  
    98  
    99