Преглед изворни кода

Fix an indentation problem in Crawler.php

Matthieu Bontemps пре 15 година
родитељ
комит
5e1c495bbb
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/Symfony/Components/DomCrawler/Crawler.php

+ 1 - 1
src/Symfony/Components/DomCrawler/Crawler.php

@@ -477,7 +477,7 @@ class Crawler extends \SplObjectStorage
         $xpath  = sprintf('//a[contains(concat(\' \', normalize-space(string(.)), \' \'), %s)] ', static::xpathLiteral(' '.$value.' ')).
                             sprintf('| //a/img[contains(concat(\' \', normalize-space(string(@alt)), \' \'), %s)]/ancestor::a', static::xpathLiteral(' '.$value.' '));
 
-     return $this->filterXPath($xpath);
+        return $this->filterXPath($xpath);
     }
 
     /**