Fix class in Platform::hasOracleSupport()

This commit is contained in:
Eric Lippmann 2023-07-17 13:53:14 +02:00 committed by Johannes Meyer
parent 1b91a93e34
commit b693369412

View File

@ -406,7 +406,7 @@ class Platform
*/
public static function hasOracleSupport()
{
return static::extensionLoaded('pdo_oci') && static::classExists('Zend_Db_Adapter_Pdo_Mysql');
return static::extensionLoaded('pdo_oci') && static::classExists('Zend_Db_Adapter_Pdo_Oci');
}
/**