From 3a24e23c5c126ccfd6c322ec9d300eb59d5e6b92 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 19 Jun 2009 17:30:39 +0000 Subject: [PATCH] absint paged git-svn-id: https://develop.svn.wordpress.org/trunk@11606 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/query.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/query.php b/wp-includes/query.php index 663133ffb0..c9f9655876 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -1234,6 +1234,7 @@ class WP_Query { $qv['day'] = absint($qv['day']); $qv['w'] = absint($qv['w']); $qv['m'] = absint($qv['m']); + $qv['paged'] = absint($qv['paged']); $qv['cat'] = preg_replace( '|[^0-9,-]|', '', $qv['cat'] ); // comma separated list of positive or negative integers $qv['pagename'] = trim( $qv['pagename'] ); $qv['name'] = trim( $qv['name'] );