mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-04-14 09:34:41 +00:00
Link Manager: Use a strict in_array() check in wp-links-opml.php.
Props dkarfa. Fixes #49106. git-svn-id: https://develop.svn.wordpress.org/trunk@47033 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -18,7 +18,7 @@ header( 'Content-Type: text/xml; charset=' . get_option( 'blog_charset' ), true
|
||||
$link_cat = '';
|
||||
if ( ! empty( $_GET['link_cat'] ) ) {
|
||||
$link_cat = $_GET['link_cat'];
|
||||
if ( ! in_array( $link_cat, array( 'all', '0' ) ) ) {
|
||||
if ( ! in_array( $link_cat, array( 'all', '0' ), true ) ) {
|
||||
$link_cat = absint( (string) urldecode( $link_cat ) );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user