Changeset 522

Show
Ignore:
Timestamp:
2007-07-24 17:25:46 (18 months ago)
Author:
wwalc
Message:

fixed regular expression typo in FCKeditorParser::replaceVariables

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • MediaWiki/trunk/extensions/FCKeditor/FCKeditor.body.php

    r521 r522  
    417417    }        
    418418    function replaceVariables( $text, $args = array(), $argsOnly = false ) { 
    419         return preg_replace("/\{\{([^}]+)\}\}(\}+)/", '<span class="fck_template">{{$1}}$2</span>', $text); 
     419        return preg_replace("/\{\{([^}]+)\}\}(\}*)/", '<span class="fck_template">{{$1}}$2</span>', $text); 
    420420    } 
    421421}