Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timotei-litespeed committed Nov 26, 2024
1 parent dbf8cdf commit 1ef3497
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cdn.cls.php
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ private function _replace_inline_css()
* @see #685485
* @since 3.0
*/
preg_match_all('/url\((?![\'"]?data)[\'"]?(.*?)[^\)\'"\\\]+)[\'"]?\)/i', $this->content, $matches);
preg_match_all('/url\((?![\'"]?data)[\'"]?(.*?)[\'"]?\)/i', $this->content, $matches);
foreach ($matches[1] as $k => $url) {
if ($url == null) {
continue;
Expand Down

0 comments on commit 1ef3497

Please sign in to comment.