diff options
author | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-09-05 09:27:09 +0000 |
---|---|---|
committer | donncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36> | 2005-09-05 09:27:09 +0000 |
commit | a4d6e4072b70beecc76032f95bd0752f59e696c4 (patch) | |
tree | 2331ebd0ff565eb92c94c3716f3bffd5b448c17a /wp-inst/wp-includes/classes.php | |
parent | 54e48001b1117ad75a255daa12cbf65fe7b2432a (diff) | |
download | wordpress-mu-a4d6e4072b70beecc76032f95bd0752f59e696c4.tar.gz wordpress-mu-a4d6e4072b70beecc76032f95bd0752f59e696c4.tar.xz wordpress-mu-a4d6e4072b70beecc76032f95bd0752f59e696c4.zip |
WP Merge
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@286 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-inst/wp-includes/classes.php')
-rw-r--r-- | wp-inst/wp-includes/classes.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wp-inst/wp-includes/classes.php b/wp-inst/wp-includes/classes.php index d027514..770f848 100644 --- a/wp-inst/wp-includes/classes.php +++ b/wp-inst/wp-includes/classes.php @@ -915,7 +915,7 @@ class WP_Rewrite { } function get_year_permastruct() { - $structure = $this->get_date_permastruct($permalink_structure); + $structure = $this->get_date_permastruct($this->permalink_structure); if (empty($structure)) { return false; @@ -930,7 +930,7 @@ class WP_Rewrite { } function get_month_permastruct() { - $structure = $this->get_date_permastruct($permalink_structure); + $structure = $this->get_date_permastruct($this->permalink_structure); if (empty($structure)) { return false; @@ -944,7 +944,7 @@ class WP_Rewrite { } function get_day_permastruct() { - return $this->get_date_permastruct($permalink_structure); + return $this->get_date_permastruct($this->permalink_structure); } function get_category_permastruct() { |