Return false from is_paged() if on the first page. Props Denis-de-Bernardy. fixes #11389

git-svn-id: https://develop.svn.wordpress.org/trunk@12372 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2009-12-11 16:38:59 +00:00
parent 68f8e4d036
commit 95f2058f8b
1 changed files with 1 additions and 1 deletions

View File

@ -1424,7 +1424,7 @@ class WP_Query {
if ( '' != $qv['tb'] )
$this->is_trackback = true;
if ( '' != $qv['paged'] )
if ( '' != $qv['paged'] && ( intval($qv['paged']) > 1 ) )
$this->is_paged = true;
if ( '' != $qv['comments_popup'] )