Make WordPress Core


Ignore:
Timestamp:
10/17/2022 06:08:39 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Grouped backports to the 4.7 branch.

  • Posts, Post types: Apply KSES to post-by-email content,
  • General: Validate host on "Are you sure?" screen,
  • Posts, Post types: Remove emails from post-by-email logs,
  • Media: Refactor search by filename within the admin,
  • Pings/trackbacks: Apply KSES to all trackbacks,
  • Comments: Apply kses when editing comments,
  • Customize: Escape blogname option in underscores templates,
  • REST API: Lockdown post parameter of the terms endpoint,
  • Mail: Reset PHPMailer properties between use,
  • Query: Validate relation in WP_Date_Query,
  • Widgets: Escape RSS error messages for display.

Merges [54521], [54522], [54523], [54524], [54525], [54526], [54527], [54528], [54529], [54530], [54541] to the 4.7 branch.
Props voldemortensen, johnbillion, paulkevan, peterwilsoncc, xknown, dd32, audrasjb, martinkrcho, vortfu, davidbaumwald, tykoted, timothyblynjacobs, johnjamesjacoby, ehtis, matveb, talldanwp.

Location:
branches/4.7
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.7

  • branches/4.7/tests/phpunit/tests/rest-api/rest-comments-controller.php

    r40114 r54566  
    25632563                'author_name'       => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
    25642564                'author_user_agent' => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
     2565                'author'            => self::$editor_id,
    25652566            ), array(
    25662567                'content' => array(
     
    25702571                'author_name'       => 'div strong',
    25712572                'author_user_agent' => 'div strong',
     2573                'author'            => self::$editor_id,
    25722574            ) );
    25732575        } else {
     
    25772579                'author_name'       => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
    25782580                'author_user_agent' => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
     2581                'author'            => self::$editor_id,
    25792582            ), array(
    25802583                'content' => array(
     
    25842587                'author_name'       => 'div strong',
    25852588                'author_user_agent' => 'div strong',
     2589                'author'            => self::$editor_id,
    25862590            ) );
    25872591        }
     
    25952599            'author_name'       => '\\\&\\\ &amp; &invalid; < &lt; &amp;lt;',
    25962600            'author_user_agent' => '\\\&\\\ &amp; &invalid; < &lt; &amp;lt;',
     2601            'author'            => self::$superadmin_id,
    25972602        ), array(
    25982603            'content' => array(
     
    26022607            'author_name'       => '\\\&amp;\\\ &amp; &amp;invalid; &lt; &lt; &amp;lt;',
    26032608            'author_user_agent' => '\\\&\\\ &amp; &invalid; &lt; &lt; &amp;lt;',
     2609            'author'            => self::$superadmin_id,
    26042610        ) );
    26052611    }
     
    26122618            'author_name'       => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
    26132619            'author_user_agent' => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
     2620            'author'            => self::$superadmin_id,
    26142621        ), array(
    26152622            'content' => array(
     
    26192626            'author_name'       => 'div strong',
    26202627            'author_user_agent' => 'div strong',
     2628            'author'            => self::$superadmin_id,
    26212629        ) );
    26222630    }
Note: See TracChangeset for help on using the changeset viewer.