From fbfc1f69472a2ceea13b6a88623ed43d05279c0f Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 18 Aug 2006 08:36:11 +0000 Subject: [PATCH] Don't page off the end. Props Mark J. fixes #3039 git-svn-id: https://develop.svn.wordpress.org/trunk@4106 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/post-template.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wp-includes/post-template.php b/wp-includes/post-template.php index d199adf6db..58ba562b24 100644 --- a/wp-includes/post-template.php +++ b/wp-includes/post-template.php @@ -76,6 +76,9 @@ function get_the_content($more_link_text = '(more...)', $stripteaser = 0, $more_ else $file = $pagenow; //$_SERVER['PHP_SELF']; + if ( $page > count($pages) ) // if the requested page doesn't exist + $page = count($pages); // give them the highest numbered page that DOES exist + $content = $pages[$page-1]; if ( preg_match('//', $content, $matches) ) { $content = explode($matches[0], $content, 2);