Changeset 13193
- Timestamp:
- 02/18/2010 10:30:28 AM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/class.wp-styles.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class.wp-styles.php
r12559 r13193 101 101 102 102 function _css_href( $src, $ver, $handle ) { 103 if ( ! preg_match('|^https?://|', $src) && ! ( $this->content_url && 0 === strpos($src, $this->content_url) ) ) {103 if ( !is_bool($src) && !preg_match('|^https?://|', $src) && ! ( $this->content_url && 0 === strpos($src, $this->content_url) ) ) { 104 104 $src = $this->base_url . $src; 105 105 }
Note: See TracChangeset
for help on using the changeset viewer.