@@ -23,7 +23,7 @@ |
||
23 | 23 | { |
24 | 24 | if (preg_match_all('/ node:attributes(?:=\"([^\'"]+)\")?/i', $this->content, $matches)) { |
25 | 25 | //We have to sort from longest to shortest |
26 | - uasort($matches[0], function ($replaceA, $replaceB) { |
|
26 | + uasort($matches[0], function($replaceA, $replaceB) { |
|
27 | 27 | return strlen($replaceB) - strlen($replaceA); |
28 | 28 | }); |
29 | 29 |