mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Int cast a step variable. see #19786. props Caspie.
git-svn-id: https://develop.svn.wordpress.org/trunk@20618 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
75bd431c76
commit
5b0664dde5
@ -41,7 +41,7 @@ require_once( dirname( __FILE__ ) . '/includes/upgrade.php' );
|
||||
/** Load wpdb */
|
||||
require_once(dirname(dirname(__FILE__)) . '/wp-includes/wp-db.php');
|
||||
|
||||
$step = isset( $_GET['step'] ) ? $_GET['step'] : 0;
|
||||
$step = isset( $_GET['step'] ) ? (int) $_GET['step'] : 0;
|
||||
|
||||
/**
|
||||
* Display install header.
|
||||
|
||||
Loading…
Reference in New Issue
Block a user