Skip to content

Commit bb59924

Browse files
committed
Merge branch '2.3' into 2.6
* 2.3: [DependencyInjection] Removed extra strtolower calls [Validator] Fixed Choice when an empty array is used in the "choices" option Fixed tests [StringUtil] Fixed singularification of 'selfies' Fix Portuguese (Portugal) translation for Security improved exception when missing required component CS: unalign = Show a better error when the port is in use CS: unalign => [FrameworkBundle] Check for 'xlf' instead of 'xliff' Add better phpdoc message for getListeners method of the EventDispatcher Conflicts: src/Symfony/Bundle/FrameworkBundle/Command/ServerRunCommand.php src/Symfony/Bundle/TwigBundle/Command/LintCommand.php src/Symfony/Component/DependencyInjection/ContainerBuilder.php src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services11.php src/Symfony/Component/Validator/Constraints/ChoiceValidator.php
2 parents 430974d + 52853f9 commit bb59924

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Security/RememberMe/DoctrineTokenProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ public function updateToken($series, $tokenValue, \DateTime $lastUsed)
9595
$paramValues = array('value' => $tokenValue,
9696
'lastUsed' => $lastUsed,
9797
'series' => $series,);
98-
$paramTypes = array('value' => \PDO::PARAM_STR,
98+
$paramTypes = array('value' => \PDO::PARAM_STR,
9999
'lastUsed' => DoctrineType::DATETIME,
100100
'series' => \PDO::PARAM_STR,);
101101
$updated = $this->conn->executeUpdate($sql, $paramValues, $paramTypes);

0 commit comments

Comments
 (0)