Changeset 7843
- Timestamp:
- 04/28/2008 06:20:53 AM (17 years ago)
- Location:
- branches/2.5/wp-includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.5/wp-includes/rewrite.php
r7666 r7843 794 794 795 795 //Default Feed rules - These are require to allow for the direct access files to work with permalink structure starting with %category% 796 $default_feeds = array( '.* /wp-atom.php$' => $this->index .'?feed=atom',797 '.* /wp-rdf.php$' => $this->index .'?feed=rdf',798 '.* /wp-rss.php$' => $this->index .'?feed=rss',799 '.* /wp-rss2.php$' => $this->index .'?feed=rss2',800 '.* /wp-feed.php$' => $this->index .'?feed=feed',801 '.* /wp-commentsrss2.php$' => $this->index . '?feed=rss2&withcomments=1');796 $default_feeds = array( '.*wp-atom.php$' => $this->index .'?feed=atom', 797 '.*wp-rdf.php$' => $this->index .'?feed=rdf', 798 '.*wp-rss.php$' => $this->index .'?feed=rss', 799 '.*wp-rss2.php$' => $this->index .'?feed=rss2', 800 '.*wp-feed.php$' => $this->index .'?feed=feed', 801 '.*wp-commentsrss2.php$' => $this->index . '?feed=rss2&withcomments=1'); 802 802 803 803 // Post -
branches/2.5/wp-includes/version.php
r7834 r7843 17 17 * @global int $wp_db_version 18 18 */ 19 $wp_db_version = 7 796;19 $wp_db_version = 7843; 20 20 21 21 ?>
Note: See TracChangeset
for help on using the changeset viewer.