minor #20505 [DOMCrawler] Bug fixed (Imangazaliev)

This PR was submitted for the master branch but it was merged into the 2.7 branch instead (closes #20505).

Discussion
----------

[DOMCrawler] Bug fixed

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | yes
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| License       | MIT
| Doc PR        | reference to the documentation PR, if any

Commits
-------

6c3150d [DOMCrawler] Bug fixed
This commit is contained in:
Fabien Potencier 2016-11-21 16:09:36 -08:00
commit 9c82a9bd92
1 changed files with 1 additions and 1 deletions

View File

@ -816,7 +816,7 @@ class Crawler extends \SplObjectStorage
}
}
return sprintf('concat(%s)', implode($parts, ', '));
return sprintf('concat(%s)', implode(', ', $parts));
}
/**