Make WordPress Core


Ignore:
Timestamp:
07/09/2023 09:46:24 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], [56177], [56178], [56179].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

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

    r55988 r56180  
    798798
    799799    $feed->set_sanitize_class( 'WP_SimplePie_Sanitize_KSES' );
    800     // We must manually overwrite $feed->sanitize because SimplePie's constructor
    801     // sets it before we have a chance to set the sanitization class.
     800    /*
     801     * We must manually overwrite $feed->sanitize because SimplePie's constructor
     802     * sets it before we have a chance to set the sanitization class.
     803     */
    802804    $feed->sanitize = new WP_SimplePie_Sanitize_KSES();
    803805
Note: See TracChangeset for help on using the changeset viewer.