Ignore:
Timestamp:
Feb 22, 2015, 11:05:49 PM (9 years ago)
Author:
chronos
Message:
  • Remove: Trailing spaces from end of lines from all files.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/HTML/BBCodeParser2/Filter/Lists.php

    r760 r815  
    2929
    3030/**
    31  * 
     31 *
    3232 */
    3333class HTML_BBCodeParser2_Filter_Lists extends HTML_BBCodeParser2_Filter
     
    8484        $oe = $options['open_esc'];
    8585        $ce = $options['close_esc'];
    86        
     86
    8787        $pattern = array(   "!".$oe."\*".$ce."!",
    8888                            "!".$oe."(u?)list=(?-i:A)(\s*[^".$ce."]*)".$ce."!i",
     
    9292                            "!".$oe."(u?)list=(?-i:1)(\s*[^".$ce."]*)".$ce."!i",
    9393                            "!".$oe."(u?)list([^".$ce."]*)".$ce."!i");
    94        
     94
    9595        $replace = array(   $o."li".$c,
    9696                            $o."\$1list=upper-alpha\$2".$c,
     
    100100                            $o."\$1list=decimal\$2".$c,
    101101                            $o."\$1list\$2".$c );
    102        
     102
    103103        $this->_preparsed = preg_replace($pattern, $replace, $this->_text);
    104104    }
Note: See TracChangeset for help on using the changeset viewer.