diff --git a/src/wp-links-opml.php b/src/wp-links-opml.php index 12d35b008a..2bc214185d 100644 --- a/src/wp-links-opml.php +++ b/src/wp-links-opml.php @@ -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 ) ); } }