WordPress.org

Make WordPress Core

Opened 17 months ago

Last modified 17 months ago

#44304 new defect (bug)

API will create PHP warning and thus break code on empty category

Reported by: apermo Owned by:
Milestone: Awaiting Review Priority: normal
Severity: minor Version: 4.9.6
Component: REST API Keywords: has-patch
Focuses: Cc:
PR Number:

Description

Example Request

array (size=3)
  'headers' => 
    array (size=)
      'Authorization' => string 'Basic randomstring==' (length=34)
  'body' => 
    array (size=15)
      'title' => string 'Test' (length=4)
      'status' => string 'publish' (length=7)
      'content' => string '' (length=0)
      'date' => string '2018-06-04 17:11:32' (length=19)
      'date_gmt' => string '2018-06-04 15:11:32' (length=19)
      'modified' => string '2018-06-05 10:24:01' (length=19)
      'modified_gmt' => string '2018-06-05 08:24:01' (length=19)
      'excerpt' => string '' (length=0)
      'slug' => string 'test' (length=4)
      'type' => string 'post' (length=4)
      'comment_status' => string 'closed' (length=6)
      'ping_status' => string 'closed' (length=6)
      'sticky' => boolean false
      'categories' => string '' (length=0)
      'tags' => string '' (length=0)
  'method' => string 'POST' (length=4)

This will lead to warnings when Debug is active on the remote node.

Warning: Invalid argument supplied for foreach() in /path/to/public_html/wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php on line 1256

I suggest to replace (1251-1253):

<?php
if ( ! isset( $request[ $base ] ) ) {
        continue;
}

With:

<?php
if ( ! isset( $request[ $base ] ) || ! is_array( $request[ $base ] ) ) {
        continue;
}

This will avoid entering the loop and the warning

Attachments (1)

44304.diff (907 bytes) - added by skostadinov 17 months ago.
Added is_iterable() check for the handle_terms() and check_assign_terms_permission()

Download all attachments as: .zip

Change History (4)

#1 @swissspidy
17 months ago

  • Keywords needs-patch added

We could also use is_iterable() now, see #43619.

#2 @apermo
17 months ago

Fine for me too ;) As long as it avoids throwing a warning.

@skostadinov
17 months ago

Added is_iterable() check for the handle_terms() and check_assign_terms_permission()

#3 @skostadinov
17 months ago

  • Keywords has-patch added; needs-patch removed
Note: See TracTickets for help on using tickets.