Changeset 11450 for trunk/wp-includes/rewrite.php
- Timestamp:
- 05/24/2009 11:47:49 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/rewrite.php
r11419 r11450 1704 1704 return $rules; 1705 1705 } 1706 1706 1707 1707 /** 1708 1708 * Retrieve IIS7 URL Rewrite formatted rewrite rules to write to web.config file. … … 1711 1711 * the process that will. 1712 1712 * 1713 * @since 2.8.0 1713 * @since 2.8.0 1714 1714 * @access public 1715 1715 * … … 1717 1717 */ 1718 1718 function iis7_url_rewrite_rules(){ 1719 1719 1720 1720 if ( ! $this->using_permalinks()) { 1721 1721 return ''; … … 1729 1729 $rules .= " <action type=\"Rewrite\" url=\"index.php\" />\n"; 1730 1730 $rules .= "</rule>"; 1731 1731 1732 1732 $rules = apply_filters('iis7_url_rewrite_rules', $rules); 1733 1733 1734 1734 return $rules; 1735 1735 } … … 1875 1875 * between the current permalink structure and the parameter value. Calls 1876 1876 * {@link WP_Rewrite::init()} after the option is updated. 1877 * 1877 * 1878 1878 * Fires the 'permalink_structure_changed' action once the init call has 1879 1879 * processed passing the old and new values
Note: See TracChangeset
for help on using the changeset viewer.