Make WordPress Core


Ignore:
Timestamp:
07/09/2023 08:15:03 PM (2 years 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/class-wp-embed.php

    r55990 r56177  
    213213        $this->last_attr = $attr;
    214214
    215         // KSES converts & into & and we need to undo this.
    216         // See https://core.trac.wordpress.org/ticket/11311
     215        /*
     216         * KSES converts & into & and we need to undo this.
     217         * See https://core.trac.wordpress.org/ticket/11311
     218         */
    217219        $url = str_replace( '&', '&', $url );
    218220
Note: See TracChangeset for help on using the changeset viewer.