Chrome showing wrong posts and SQL different
-
Chrome is showing different posts to Safari, Opera and Firefox.
Have tried different themes and changing the permalinks.
Did a $wp_query dump from the Twenty Eleven theme and this is the SQL, with the difference bolded:
Safari, Opera, Firefox:
SELECT SQL_CALC_FOUND_ROWS wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.post_type = ‘post’ AND (wp_posts.post_status = ‘publish’) ORDER BY wp_posts.post_date DESC LIMIT 0, 10Chrome:
SELECT SQL_CALC_FOUND_ROWS wp_posts.* FROM wp_posts WHERE 1=1 AND wp_posts.post_type = ‘post’ AND (wp_posts.post_status = ‘publish’ OR wp_posts.post_status = ‘private’) ORDER BY wp_posts.post_date DESC LIMIT 0, 10This returns quite a different set of posts.
Anyone encountered this? Anyone have a solution?
- The topic ‘Chrome showing wrong posts and SQL different’ is closed to new replies.