Changeset 56549 for trunk/src/wp-includes/functions.php
- Timestamp:
- 09/09/2023 09:26:01 AM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r56548 r56549 2697 2697 2698 2698 $number = $new_number; 2699 $i++;2699 ++$i; 2700 2700 } 2701 2701 } … … 2770 2770 2771 2771 $number = $new_number; 2772 $i++;2772 ++$i; 2773 2773 } 2774 2774 } … … 7164 7164 $caller = array(); 7165 7165 $check_class = ! is_null( $ignore_class ); 7166 $skip_frames++; // Skip this function.7166 ++$skip_frames; // Skip this function. 7167 7167 7168 7168 if ( ! isset( $truncate_paths ) ) { … … 7175 7175 foreach ( $trace as $call ) { 7176 7176 if ( $skip_frames > 0 ) { 7177 $skip_frames--;7177 --$skip_frames; 7178 7178 } elseif ( isset( $call['class'] ) ) { 7179 7179 if ( $check_class && $ignore_class === $call['class'] ) {
Note: See TracChangeset
for help on using the changeset viewer.