Make WordPress Core


Ignore:
Timestamp:
09/23/2018 10:49:02 PM (7 years ago)
Author:
jorbin
Message:

General: PHP7.3 throws an E_WARNING when using continue to target a switch

Applying continue to a switch is equivalent to using break and quite possibly, a continue targeting a higher level control structure is actually intended.

To target the higher level control structure, a numeric argument has to be passed to continue. This fixes two cases in WordPress Core where this is currently happening.

See: https://github.com/php/php-src/pull/3364
See: https://wiki.php.net/rfc/continue_on_switch_deprecation

Props jrf.
Fixes #44543.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/pomo/plural-forms.php

    r42343 r43653  
    208208                        $output[] = array( 'value', intval( substr( $str, $pos, $span ) ) );
    209209                        $pos     += $span;
    210                         continue;
     210                        break;
    211211                    }
    212212
Note: See TracChangeset for help on using the changeset viewer.