Changeset 1855 for MediaWiki/trunk

Show
Ignore:
Timestamp:
2008-03-31 13:11:50 (6 months ago)
Author:
wwalc
Message:

fix for #1625 (relative links handling).

Location:
MediaWiki/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • MediaWiki/trunk/FCKeditorParser.body.php

    r1851 r1855  
    5151        } 
    5252 
     53        /** 
     54         * Handle link to subpage if necessary 
     55         * @param string $target the source of the link 
     56         * @param string &$text the link text, modified as necessary 
     57         * @return string the full name of the link 
     58         * @private 
     59         */ 
     60        function maybeDoSubpageLink($target, &$text) { 
     61                return $target; 
     62        } 
     63         
    5364        /** 
    5465        * Callback function for custom tags: feed, ref, references etc. 
  • MediaWiki/trunk/mw12/FCKeditorParser_OldPP.body.php

    r1851 r1855  
    5151        } 
    5252 
     53        /** 
     54         * Handle link to subpage if necessary 
     55         * @param string $target the source of the link 
     56         * @param string &$text the link text, modified as necessary 
     57         * @return string the full name of the link 
     58         * @private 
     59         */ 
     60        function maybeDoSubpageLink($target, &$text) { 
     61                return $target; 
     62        } 
     63         
    5364        /** 
    5465        * Callback function for custom tags: feed, ref, references etc.