CC-2469:Client is sending data without checkout feedback flag

- fixed
This commit is contained in:
james 2011-06-28 12:34:47 -04:00
parent 3306292f93
commit f8a1990ec1
1 changed files with 15 additions and 13 deletions

View File

@ -55,6 +55,7 @@ if (PEAR::isError($CC_DBC)) {
echo "* Connected to database".PHP_EOL;
$CC_DBC->setFetchMode(DB_FETCHMODE_ASSOC);
}
if(Application_Model_Preference::GetSupportFeedback() == '1'){
$infoArray = Application_Model_Preference::GetSystemInfo(true);
$ch = curl_init();
@ -68,4 +69,5 @@ $dataArray = array("data" => $data );
curl_setopt($ch, CURLOPT_POSTFIELDS, $dataArray);
$result = curl_exec($ch);
}
?>