| @@ -17,9 +17,9 @@ | ||
| 17 | 17 | } /* function FeedWordPressHTML::attributeRegex () */ |
| 18 | 18 | |
| 19 | 19 | static function attributeMatch ($matches) { |
| 20 | 20 | for ($i = 0; $i <= 12; $i++) : |
| 21 | - if ( !isset($matches[$i])) : | |
| 21 | + if (!isset($matches[$i])) : | |
| 22 | 22 | $matches[$i] = ''; |
| 23 | 23 | endif; |
| 24 | 24 | endfor; |
| 25 | 25 | |
| @@ -58,9 +58,9 @@ | ||
| 58 | 58 | } /* FeedWordPressHTML::tagWithAttributeRegex () */ |
| 59 | 59 | |
| 60 | 60 | static function tagWithAttributeMatch ($matches, $closing = true) { |
| 61 | 61 | for ($i = 0; $i <= 21; $i++) : |
| 62 | - if ( !isset($matches[$i])) : | |
| 62 | + if (!isset($matches[$i])) : | |
| 63 | 63 | $matches[$i] = ''; |
| 64 | 64 | endif; |
| 65 | 65 | endfor; |
| 66 | 66 | |