Skip to content

Commit 8d54ee2

Browse files
committed
Merge branch '3.2'
* 3.2: (24 commits) [Filesystem] Remove extra argv in dumpFile() tests [DI] minor FileLoaders tests update [FrameworkBundle] Add framework.cache.prefix_seed for predictible cache key prefixes [SecurityBundle] Remove FirewallContext mandatory FirewallConfig argument deprecation [HttpKernel] Revert BC breaking change of Request::isMethodSafe() [DI] Allow null as default env value [WebProfilerBundle] Fix deprecated uses of profiler_dump [SecurityBundle] Fix FirewallConfig nullable arguments [FrameworkBundle] Avoid warming up the validator cache for non-existent classes [DOMCrawler] Bug fixed [FrameworkBundle] Mark cache.default_*_provider services private [Process] Do feat test before enabling TTY mode bumped Symfony version to 3.1.8 updated VERSION for 3.1.7 updated CHANGELOG for 3.1.7 bumped Symfony version to 2.8.15 updated VERSION for 2.8.14 updated CHANGELOG for 2.8.14 bumped Symfony version to 2.7.22 updated VERSION for 2.7.21 ...
2 parents a61eab1 + 5455ba0 commit 8d54ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Crawler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -930,7 +930,7 @@ public static function xpathLiteral($s)
930930
}
931931
}
932932

933-
return sprintf('concat(%s)', implode($parts, ', '));
933+
return sprintf('concat(%s)', implode(', ', $parts));
934934
}
935935

936936
/**

0 commit comments

Comments
 (0)