Make WordPress Core


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

Grouped backports to the 4.8 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.8 branch.
Props voldemortensen, johnbillion, paulkevan, peterwilsoncc, xknown, dd32, audrasjb, martinkrcho, vortfu, davidbaumwald, tykoted, timothyblynjacobs, johnjamesjacoby, ehtis, matveb, talldanwp.

Location:
branches/4.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.8

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

    r40101 r54568  
    25912591                'author_name'       => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
    25922592                'author_user_agent' => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
     2593                'author'            => self::$editor_id,
    25932594            ), array(
    25942595                'content' => array(
     
    25982599                'author_name'       => 'div strong',
    25992600                'author_user_agent' => 'div strong',
     2601                'author'            => self::$editor_id,
    26002602            ) );
    26012603        } else {
     
    26052607                'author_name'       => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
    26062608                'author_user_agent' => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
     2609                'author'            => self::$editor_id,
    26072610            ), array(
    26082611                'content' => array(
     
    26122615                'author_name'       => 'div strong',
    26132616                'author_user_agent' => 'div strong',
     2617                'author'            => self::$editor_id,
    26142618            ) );
    26152619        }
     
    26232627            'author_name'       => '\\\&\\\ &amp; &invalid; < &lt; &amp;lt;',
    26242628            'author_user_agent' => '\\\&\\\ &amp; &invalid; < &lt; &amp;lt;',
     2629            'author'            => self::$superadmin_id,
    26252630        ), array(
    26262631            'content' => array(
     
    26302635            'author_name'       => '\\\&amp;\\\ &amp; &amp;invalid; &lt; &lt; &amp;lt;',
    26312636            'author_user_agent' => '\\\&\\\ &amp; &invalid; &lt; &lt; &amp;lt;',
     2637            'author'            => self::$superadmin_id,
    26322638        ) );
    26332639    }
     
    26402646            'author_name'       => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
    26412647            'author_user_agent' => '<div>div</div> <strong>strong</strong> <script>oh noes</script>',
     2648            'author'            => self::$superadmin_id,
    26422649        ), array(
    26432650            'content' => array(
     
    26472654            'author_name'       => 'div strong',
    26482655            'author_user_agent' => 'div strong',
     2656            'author'            => self::$superadmin_id,
    26492657        ) );
    26502658    }
Note: See TracChangeset for help on using the changeset viewer.