Make WordPress Core

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


Ignore:
Timestamp:
05/20/2019 05:59:20 PM (6 years ago)
Author:
screamingdev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #46991, comment 4

    initial v1  
    2525                                        $value = call_user_func_array( $the_['function'], array_slice( $args, 0, (int)$the_['accepted_args'] ) );
    2626                                }
    27                         }
    2827
    29                         if ( $value instanceof \WP_Hook_Stop ) {
    30                                 $value = $value->get_value();
    31                                 break;
     28                                if ( $value instanceof \WP_Hook_Stop ) {
     29                                        $value = $value->get_value();
     30                                        break 2;
     31                                }
    3232                        }
    3333