Make WordPress Core


Ignore:
Timestamp:
07/09/2023 08:15:03 PM (17 months ago)
Author:
audrasjb
Message:

Docs: Replace multiple single line comments with multi-line comments.

This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.

Follow-up to [56174], [56175], [56176].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/bookmark.php

    r55398 r56177  
    405405        case 'link_category': // array( ints )
    406406            $value = array_map( 'absint', (array) $value );
    407             // We return here so that the categories aren't filtered.
    408             // The 'link_category' filter is for the name of a link category, not an array of a link's link categories.
     407            /*
     408             * We return here so that the categories aren't filtered.
     409             * The 'link_category' filter is for the name of a link category, not an array of a link's link categories.
     410             */
    409411            return $value;
    410412
Note: See TracChangeset for help on using the changeset viewer.