We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8d2c953 + 10330b5 commit b104ec0Copy full SHA for b104ec0
src/Plugin/ProxifyPlugin.php
@@ -33,7 +33,7 @@ private function html_attr($matches){
33
// could be empty?
34
$url = trim($matches[2]);
35
36
- if(stripos($url, 'data:') === 0 || stripos($url, 'magnet:') === 0 ){
+ if(stripos($url, 'data:') === 0 || stripos($url, 'magnet:') === 0 || stripos($url, 'about:') === 0 || stripos($url, 'javascript:') === 0 || stripos($url, 'mailto:') === 0 || stripos($url, 'tel:') === 0 || stripos($url, 'ios-app:') === 0 || stripos($url, 'android-app:') === 0){
37
return $matches[0];
38
}
39
0 commit comments