Changeset 57377 for trunk/src/wp-includes/blocks/calendar.php
- Timestamp:
- 01/29/2024 09:04:18 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/blocks/calendar.php
r56710 r57377 34 34 str_contains( $permalink_structure, '%year%' ) 35 35 ) { 36 // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited37 36 $monthnum = $attributes['month']; 38 // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited 39 $year = $attributes['year']; 37 $year = $attributes['year']; 40 38 } 41 39 } … … 71 69 ); 72 70 73 // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited74 71 $monthnum = $previous_monthnum; 75 // phpcs:ignore WordPress.WP.GlobalVariablesOverride.OverrideProhibited 76 $year = $previous_year; 72 $year = $previous_year; 77 73 78 74 return $output;
Note: See TracChangeset
for help on using the changeset viewer.