Changeset 8617
- Timestamp:
- 08/11/2008 08:18:00 PM (17 years ago)
- Location:
- branches/2.6/wp-includes
- Files:
-
- 2 edited
-
rewrite.php (modified) (2 diffs)
-
version.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/2.6/wp-includes/rewrite.php
r8511 r8617 448 448 449 449 if (empty($this->category_base)) 450 $this->category_base = 'category'; 451 $this->category_structure = trailingslashit( $this->front . $this->category_base ); 450 $this->category_structure = trailingslashit( $this->front . 'category' ); 451 else 452 $this->category_structure = trailingslashit( '/' . $this->root . $this->category_base ); 452 453 453 454 $this->category_structure .= '%category%'; … … 467 468 468 469 if (empty($this->tag_base)) 469 $this->tag_base = 'tag'; 470 $this->tag_structure = trailingslashit( $this->front . $this->tag_base ); 470 $this->tag_structure = trailingslashit( $this->front . 'tag' ); 471 else 472 $this->tag_structure = trailingslashit( '/' . $this->root . $this->tag_base ); 471 473 472 474 $this->tag_structure .= '%tag%'; -
branches/2.6/wp-includes/version.php
r8561 r8617 16 16 * @global int $wp_db_version 17 17 */ 18 $wp_db_version = 820 3;18 $wp_db_version = 8204; 19 19 20 20 ?>
Note: See TracChangeset
for help on using the changeset viewer.