From ddad3fa4a51f9202106adce4da2bc5a6ca9d9b22 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 19 Jun 2009 17:30:39 +0000 Subject: [PATCH] absint paged git-svn-id: http://svn.automattic.com/wordpress/trunk@11606 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/query.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-includes/query.php b/wp-includes/query.php index 663133ffb..c9f965587 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'] );