Skip to content

Commit

Permalink
Merge branch '6.3' into 6.4
Browse files Browse the repository at this point in the history
* 6.3:
  [Cache][Lock] Fix PDO store not creating table + add tests
  Closes #51936-Added Missing translations for Czech (cs) in validators.cs.xlf file
  Added missing translations in turkish and updated validators.tr.xlf
  [Serializer] Fix denormalizing date intervals having both weeks and days
  [Validator] updated Turkish translation
  [Serializer] Fix denormalize constructor arguments
  Add some more non-countable English nouns
  Add hint that changing input arguments has no effect
  [DomCrawler] Revert "bug #52579 UriResolver support path with colons"
  [VarExporter] Fix handling mangled property names returned by __sleep()
  Update Github template for 7.1
  • Loading branch information
nicolas-grekas committed Nov 20, 2023
2 parents e0905cd + 49a04fd commit 44a6d39
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Session/Storage/Handler/SessionHandlerFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ public static function createHandler(object|string $connection, array $options =
}

$connection = DriverManager::getConnection($params, $config);
// The condition should be removed once support for DBAL <3.3 is dropped
$connection = method_exists($connection, 'getNativeConnection') ? $connection->getNativeConnection() : $connection->getWrappedConnection();
// no break;

Expand Down

0 comments on commit 44a6d39

Please sign in to comment.