Преглед на файлове

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);
     }
 
     /**