summaryrefslogtreecommitdiffstats
path: root/wp-includes/post.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-22 11:44:06 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-22 11:44:06 +0000
commitb2f9804dae80c5f6c70c70e92a3bbde67e2615c5 (patch)
tree7615f215a90e4c797702547dab832d30887a0a54 /wp-includes/post.php
parent4e71faf4fa1a98517df1c83be342dd3714f504d2 (diff)
downloadwordpress-mu-b2f9804dae80c5f6c70c70e92a3bbde67e2615c5.tar.gz
wordpress-mu-b2f9804dae80c5f6c70c70e92a3bbde67e2615c5.tar.xz
wordpress-mu-b2f9804dae80c5f6c70c70e92a3bbde67e2615c5.zip
WP Merge to 4780
git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@854 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/post.php')
-rw-r--r--wp-includes/post.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/wp-includes/post.php b/wp-includes/post.php
index 058db08..0fc26de 100644
--- a/wp-includes/post.php
+++ b/wp-includes/post.php
@@ -1183,10 +1183,13 @@ function generate_page_uri_index() {
$page_uris[$uri] = $id;
}
+ delete_option('page_uris');
update_option('page_uris', $page_uris);
- if ( $page_attachment_uris )
+ if ( $page_attachment_uris ) {
+ delete_option('page_attachment_uris');
update_option('page_attachment_uris', $page_attachment_uris);
+ }
}
}