mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-25 23:04:51 +02:00
Zend_Db::FETCH_MODE is not available before ZF 1.11 (ZF-6620)
* TODO: Check whether passing 'fetchMode' really works?!
This commit is contained in:
parent
8d4bc479f7
commit
72df979791
@ -83,7 +83,8 @@ class DbAdapterFactory implements ConfigAwareFactory
|
|||||||
private static $defaultZendDbAdapterOptions = array(
|
private static $defaultZendDbAdapterOptions = array(
|
||||||
Zend_Db::AUTO_QUOTE_IDENTIFIERS => false,
|
Zend_Db::AUTO_QUOTE_IDENTIFIERS => false,
|
||||||
Zend_Db::CASE_FOLDING => Zend_Db::CASE_LOWER,
|
Zend_Db::CASE_FOLDING => Zend_Db::CASE_LOWER,
|
||||||
Zend_Db::FETCH_MODE => Zend_Db::FETCH_OBJ
|
// Zend_Db::FETCH_MODE => Zend_Db::FETCH_OBJ
|
||||||
|
'fetchMode' => Zend_Db::FETCH_OBJ
|
||||||
);
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user