Changeset 61358 for trunk/src/wp-includes/class-wp-styles.php
- Timestamp:
- 12/07/2025 04:14:08 AM (3 months ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/class-wp-styles.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-styles.php
r61357 r61358 97 97 * 98 98 * @since 2.8.0 99 * @var array99 * @var string[]|null 100 100 */ 101 101 public $default_dirs; … … 184 184 185 185 if ( $this->do_concat ) { 186 if ( $this->in_default_dir( $src ) && ! isset( $obj->extra['alt'] ) ) {186 if ( is_string( $src ) && $this->in_default_dir( $src ) && ! isset( $obj->extra['alt'] ) ) { 187 187 $this->concat .= "$handle,"; 188 188 $this->concat_version .= "$handle$ver";
Note: See TracChangeset
for help on using the changeset viewer.