Fixing that GetAttributeRegex should find attributes with empty value

This commit is contained in:
Benedek Farkas 2024-11-27 22:07:29 +01:00
parent ff3986eb1f
commit cfe62f4c21

View File

@ -193,6 +193,6 @@ namespace Orchard.MediaProcessing.Filters {
}
}
private string GetAttributeRegex(string attributeName) => $@"\b{attributeName}\s*=\s*[""']?([^""'\s>]+)[""']?";
private string GetAttributeRegex(string attributeName) => $@"\b{attributeName}\s*=\s*[""']?([^""'\s>]*)[""']?";
}
}