Make WordPress Core

Changes between Version 3 and Version 4 of Ticket #39338, comment 52


Ignore:
Timestamp:
01/21/2019 12:43:00 AM (7 years ago)
Author:
trongn
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #39338, comment 52

    v3 v4  
    1212Fix **class-wp-hook.php** in wp-includes folder (fix all similar while loops)\\
    1313
    14 {{{#!php
    15 <?php
     14{{{
    1615} while ( is_array( $this->iterations[ $nesting_level ] ) && false !== next( $this->iterations[ $nesting_level ] ) );
    1716}}}
     
    1918Wordpress v4.6.1\\
    2019Fix **plugin.php** in wp-includes folder (fix all similar while loops)\\
    21 {{{#!php
    22 <?php
     20
     21{{{
    2322} while (is_array($wp_filter[$tag]) && next($wp_filter[$tag]) !== false );
    2423}}}