mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-03 13:43:35 -04:00
Fix class in Platform::hasOracleSupport()
This commit is contained in:
parent
1b91a93e34
commit
b693369412
1 changed files with 1 additions and 1 deletions
|
|
@ -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');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue