Make WordPress Core

Changeset 60207

Timestamp:
04/30/2025 12:50:46 PM (5 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Remove unnecessary type casting in wp-links-opml.php.

Follow-up to [13747].

Props dilipbheda, debarghyabanerjee, umeshsinghin.
Fixes #63367.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-links-opml.php

    r54881 r60207  
    2020    $link_cat = $_GET['link_cat'];
    2121    if ( ! in_array( $link_cat, array( 'all', '0' ), true ) ) {
    22         $link_cat = absint( (string) urldecode( $link_cat ) );
     22        $link_cat = absint( urldecode( $link_cat ) );
    2323    }
    2424}
Note: See TracChangeset for help on using the changeset viewer.