Make WordPress Core

Ticket #9824: 9824.2.patch

File 9824.2.patch, 656 bytes (added by SergeyBiryukov, 13 years ago)
  • wp-includes/rewrite.php

     
    19071907
    19081908                $this->use_trailing_slashes = ( '/' == substr($this->permalink_structure, -1, 1) );
    19091909
    1910                 $this->use_verbose_page_rules = (bool) preg_match( "#^/%(postname|category|tag|author)%#", $this->permalink_structure );
     1910                $clean_structure = str_replace( array( '/index.php', '/blog' ), '', $this->permalink_structure );
     1911                $this->use_verbose_page_rules = (bool) preg_match( "#^/%(postname|category|tag|author)%#", $clean_structure );
    19111912        }
    19121913
    19131914        /**