Switch from abs(intval()) to absint(). See #4762.
git-svn-id: http://svn.automattic.com/wordpress/trunk@6682 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
5c2f29c467
commit
520d17d7f0
|
@ -29,7 +29,7 @@ class BunnyTags_Import {
|
|||
if ( empty($_GET['step']) )
|
||||
$step = 0;
|
||||
else
|
||||
$step = abs(intval($_GET['step']));
|
||||
$step = absint($_GET['step']);
|
||||
|
||||
// load the header
|
||||
$this->header();
|
||||
|
|
|
@ -33,7 +33,7 @@ class JeromesKeyword_Import {
|
|||
if ( empty($_GET['step']) )
|
||||
$step = 0;
|
||||
else
|
||||
$step = abs(intval($_GET['step']));
|
||||
$step = absint($_GET['step']);
|
||||
|
||||
// load the header
|
||||
$this->header();
|
||||
|
|
|
@ -369,7 +369,7 @@ function wp_get_archives($args = '') {
|
|||
$type = 'monthly';
|
||||
|
||||
if ( '' != $limit ) {
|
||||
$limit = abs(intval($limit));
|
||||
$limit = absint($limit);
|
||||
$limit = ' LIMIT '.$limit;
|
||||
}
|
||||
|
||||
|
|
|
@ -120,7 +120,7 @@ if ( !function_exists('get_userdata') ) :
|
|||
function get_userdata( $user_id ) {
|
||||
global $wpdb;
|
||||
|
||||
$user_id = abs(intval($user_id));
|
||||
$user_id = absint($user_id);
|
||||
if ( $user_id == 0 )
|
||||
return false;
|
||||
|
||||
|
|
|
@ -1196,7 +1196,7 @@ class WP_Query {
|
|||
|
||||
// Paging
|
||||
if ( empty($q['nopaging']) && !$this->is_singular ) {
|
||||
$page = abs(intval($q['paged']));
|
||||
$page = absint($q['paged']);
|
||||
if (empty($page)) {
|
||||
$page = 1;
|
||||
}
|
||||
|
@ -1206,7 +1206,7 @@ class WP_Query {
|
|||
$pgstrt = (intval($page) -1) * $q['posts_per_page'] . ', ';
|
||||
$limits = 'LIMIT '.$pgstrt.$q['posts_per_page'];
|
||||
} else { // we're ignoring $page and using 'offset'
|
||||
$q['offset'] = abs(intval($q['offset']));
|
||||
$q['offset'] = absint($q['offset']);
|
||||
$pgstrt = $q['offset'] . ', ';
|
||||
$limits = 'LIMIT ' . $pgstrt . $q['posts_per_page'];
|
||||
}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
if ( !defined('WP_MEMORY_LIMIT') )
|
||||
define('WP_MEMORY_LIMIT', '32M');
|
||||
|
||||
if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < abs(intval(WP_MEMORY_LIMIT)) ) )
|
||||
if ( function_exists('memory_get_usage') && ( (int) @ini_get('memory_limit') < absint(WP_MEMORY_LIMIT) ) )
|
||||
@ini_set('memory_limit', WP_MEMORY_LIMIT);
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue