diff options
-rw-r--r-- | src/wp-links-opml.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wp-links-opml.php b/src/wp-links-opml.php index 746c287a7e..51ef95bd1a 100644 --- a/src/wp-links-opml.php +++ b/src/wp-links-opml.php @@ -19,7 +19,7 @@ $link_cat = ''; if ( ! empty( $_GET['link_cat'] ) ) { $link_cat = $_GET['link_cat']; if ( ! in_array( $link_cat, array( 'all', '0' ), true ) ) { - $link_cat = absint( (string) urldecode( $link_cat ) ); + $link_cat = absint( urldecode( $link_cat ) ); } } |