Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #40393, comment 4


Ignore:
Timestamp:
07/21/2017 08:38:52 PM (7 years ago)
Author:
jbrinley
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #40393, comment 4

    initial v1  
    1515                        while ( current( $iteration ) < $current ) {
    1616                                $next = next( $iteration );
    17                                 if ( $next > $current ) {
     17                                if ( false === $next ) {
     18                                        break;
     19                                } elseif ( $next > $current ) {
    1820                                        // The current key has gone away. Point
    1921                                        // to the previous key so it's grabbed
    2022                                        // on the next iteration
    2123                                        prev( $iteration );
    22                                         break;
    23                                 } elseif ( false === $next ) {
    2424                                        break;
    2525                                }