mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-01 15:50:09 +00:00
Switch from abs(intval()) to absint(). See #4762.
git-svn-id: https://develop.svn.wordpress.org/trunk@6682 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user