Project

General

Profile

Bug #22367 » class.em_XX.php.patch

Administrator Admin, 2011-03-22 13:54

View differences:

class.em_index.php 2011-03-21 19:12:10 +0300
);
$response['resultMessages'][] = $this->updateLocalEM_CONF($em['extKey'],$em['extInfo']);
}
elseif ((-1) == $response['resultCode']) {
$response['resultMessages'] = array(
$GLOBALS['LANG']->getLL('terCommunication_nosoap_1'),
$GLOBALS['LANG']->getLL('terCommunication_nosoap_2')
);
}
$msg = '<ul><li>'.implode('</li><li>',$response['resultMessages']).'</li></ul>';
return $msg;
......
include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/mod/tools/em/index.php']);
}
?>
?>
-- class.em_terconnection.php.bak 2011-03-21 17:48:51 +0300
++ class.em_terconnection.php 2011-03-21 23:30:28 +0300
......
}
$soap = t3lib_div::makeInstance('em_soap');
$soap->init(array('wsdl'=>$this->wsdlURL,'soapoptions'=> array('trace'=>1,'exceptions'=>0)));
$soapInitStatus = $soap->init(
array('wsdl'=>$this->wsdlURL,'soapoptions'=> array('trace'=>1,'exceptions'=>0))
);
if (!$soapInitStatus)
return array('resultCode' => (-1)); // SOAP module not installed
$response = $soap->call('uploadExtension', array('accountData' => $accountData, 'extensionData' => $extensionData, 'filesData' => $filesData));
if($response===false) {
......
}
}
?>
?>
-- class.em_soap.php.bak 2011-03-21 17:25:13 +0300
++ class.em_soap.php 2011-03-21 23:41:19 +0300
......
default:
$this->client = false;
}
return ($this->client !== false);
}
/**
......
}
}
?>
?>
(1-1/2)