Changes between Version 3 and Version 4 of Ticket #39338, comment 52
- Timestamp:
- 01/21/2019 12:43:00 AM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #39338, comment 52
v3 v4 12 12 Fix **class-wp-hook.php** in wp-includes folder (fix all similar while loops)\\ 13 13 14 {{{#!php 15 <?php 14 {{{ 16 15 } while ( is_array( $this->iterations[ $nesting_level ] ) && false !== next( $this->iterations[ $nesting_level ] ) ); 17 16 }}} … … 19 18 Wordpress v4.6.1\\ 20 19 Fix **plugin.php** in wp-includes folder (fix all similar while loops)\\ 21 {{{#!php 22 <?php 20 21 {{{ 23 22 } while (is_array($wp_filter[$tag]) && next($wp_filter[$tag]) !== false ); 24 23 }}}