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/FCKeditorSkin.body.php

    r1854 r2077  
    11<?php 
    22 
    3 class FCKeditorSkin 
    4 { 
     3class FCKeditorSkin { 
    54        private $skin; 
    65 
     
    2019         */ 
    2120        function makeImageLinkObj( $nt, $label, $alt, $align = '', $params = array(), $framed = false, 
    22         $thumb = false, $manual_thumb = '', $valign = '' ) 
    23         { 
     21        $thumb = false, $manual_thumb = '', $valign = '' ) { 
    2422                $orginal = $nt->getText(); 
    2523                $img   = new Image( $nt ); 
     
    216214        } 
    217215 
    218         function makeKnownLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' , $aprops = '', $style = '' ) 
    219         { 
     216        function makeKnownLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' , $aprops = '', $style = '' ) { 
    220217                $fname = 'FCKeditorSkin::makeKnownLinkObj'; 
    221218                wfProfileIn( $fname ); 
     
    258255        } 
    259256 
    260         function makeBrokenLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) 
    261         { 
     257        function makeBrokenLinkObj( $nt, $text = '', $query = '', $trail = '', $prefix = '' ) { 
    262258                # Fail gracefully 
    263259                if ( ! isset($nt) ) { 
     
    345341        } 
    346342 
    347         function __call( $m, $a) 
    348         { 
     343        function __call( $m, $a) { 
    349344                return call_user_func_array( array( $this->skin, $m ), $a ); 
    350345        } 
    351346 
    352         function __construct( &$skin ) 
    353         { 
     347        function __construct( &$skin ) { 
    354348                $this->skin = $skin; 
    355349        }