Changeset 2834

Show
Ignore:
Timestamp:
09/02/05 17:08:39 (3 years ago)
Author:
ryan
Message:

Fix permalink structure refs. Props to dougal. fixes #1643

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/classes.php

    r2824 r2834  
    916916 
    917917    function get_year_permastruct() { 
    918         $structure = $this->get_date_permastruct($permalink_structure); 
     918        $structure = $this->get_date_permastruct($this->permalink_structure); 
    919919 
    920920        if (empty($structure)) { 
     
    931931 
    932932    function get_month_permastruct() { 
    933         $structure = $this->get_date_permastruct($permalink_structure); 
     933        $structure = $this->get_date_permastruct($this->permalink_structure); 
    934934 
    935935        if (empty($structure)) { 
     
    945945 
    946946    function get_day_permastruct() { 
    947         return $this->get_date_permastruct($permalink_structure); 
     947        return $this->get_date_permastruct($this->permalink_structure); 
    948948    } 
    949949