Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | public function manipulate($html, array $configuration = []) |
||
35 | { |
||
36 | if (strlen($html) < 100000) { |
||
37 | $pattern = '/<script (type="text\/javascript"|language="javascript")>.+?Konqueror.+function blurLink.+theObject.blur.+?<\/script>/is'; |
||
38 | $html = preg_replace($pattern, '', $html); // in head |
||
39 | } |
||
40 | return str_replace(' onfocus="blurLink(this);"', '', $html); // in body |
||
41 | } |
||
42 | } |
||
43 |