Changeset 55990 for trunk/src/wp-admin/includes/misc.php
- Timestamp:
- 06/22/2023 02:55:47 PM (16 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/misc.php
r55988 r55990 82 82 83 83 if ( $state ) { 84 if ( '#' === substr( $markerline, 0, 1) ) {84 if ( str_starts_with( $markerline, '#' ) ) { 85 85 continue; 86 86 } … … 751 751 $screen_option = false; 752 752 753 if ( '_page' === substr( $option, -5) || 'layout_columns' === $option ) {753 if ( str_ends_with( $option, '_page' ) || 'layout_columns' === $option ) { 754 754 /** 755 755 * Filters a screen option value before it is set.
Note: See TracChangeset
for help on using the changeset viewer.