Make WordPress Core


Ignore:
Timestamp:
05/24/2009 11:47:49 PM (17 years ago)
Author:
ryan
Message:

Trim tailing whitespace

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/rewrite.php

    r11419 r11450  
    17041704                return $rules;
    17051705        }
    1706        
     1706
    17071707        /**
    17081708         * Retrieve IIS7 URL Rewrite formatted rewrite rules to write to web.config file.
     
    17111711         * the process that will.
    17121712         *
    1713          * @since 2.8.0 
     1713         * @since 2.8.0
    17141714         * @access public
    17151715         *
     
    17171717         */
    17181718        function iis7_url_rewrite_rules(){
    1719                
     1719
    17201720                if ( ! $this->using_permalinks()) {
    17211721                        return '';
     
    17291729                $rules .= "     <action type=\"Rewrite\" url=\"index.php\" />\n";
    17301730                $rules .= "</rule>";
    1731                                
     1731
    17321732                $rules = apply_filters('iis7_url_rewrite_rules', $rules);
    1733                
     1733
    17341734                return $rules;
    17351735        }
     
    18751875         * between the current permalink structure and the parameter value. Calls
    18761876         * {@link WP_Rewrite::init()} after the option is updated.
    1877          * 
     1877         *
    18781878         * Fires the 'permalink_structure_changed' action once the init call has
    18791879         * processed passing the old and new values
Note: See TracChangeset for help on using the changeset viewer.