Bug #21077 ยป 0011984.patch
handlers/class.tx_dbal_handler_openoffice.php (Arbeitskopie) | ||
---|---|---|
* @param object Parent object
|
||
* @return boolean True on success.
|
||
*/
|
||
function init($config, &$pObj) {
|
||
function init($config, $pObj) {
|
||
$this->config = $config['config'];
|
||
if (t3lib_extMgm::isLoaded('libunzipped')) {
|
handlers/class.tx_dbal_handler_rawmysql.php (Arbeitskopie) | ||
---|---|---|
*/
|
||
function init($config,&$pObj) {
|
||
$this->config = $config['config'];
|
||
$this->pObj = &$pObj;
|
||
$this->pObj = $pObj;
|
||
$this->link = mysql_pconnect(
|
||
$this->config['host'],
|
||
$this->config['username'],
|
handlers/class.tx_dbal_handler_xmldb.php (Arbeitskopie) | ||
---|---|---|
* @param object Parent object
|
||
* @return void
|
||
*/
|
||
function init($config, &$pObj) {
|
||
function init($config, $pObj) {
|
||
$this->config = $config['config'];
|
||
$dbStorage = t3lib_div::getFileAbsFileName($this->config['DBstorageDir']);
|