Changeset 56031 for trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php
- Timestamp:
- 06/26/2023 10:15:04 AM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php
r56019 r56031 1112 1112 $value = trim( $value ); 1113 1113 1114 if ( strpos( $value, ';' ) === false) {1114 if ( ! str_contains( $value, ';' ) ) { 1115 1115 continue; 1116 1116 } … … 1122 1122 1123 1123 foreach ( $attr_parts as $part ) { 1124 if ( strpos( $part, '=' ) === false) {1124 if ( ! str_contains( $part, '=' ) ) { 1125 1125 continue; 1126 1126 }
Note: See TracChangeset
for help on using the changeset viewer.