Skip to content

Commit

Permalink
SLL Verifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Dat committed Dec 16, 2016
1 parent ace7415 commit e2cdc48
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ public function printCardForm($moneyInToken, $cssUrl = '', $language = 'fr'){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $this->getConfig()->getWebkitUrl()."?moneyintoken=".$moneyInToken.'&p='.urlencode($cssUrl).'&lang='.$language);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, !$this->getConfig()->isTestMode());

$server_output = curl_exec ($ch);
if(curl_errno($ch))
Expand Down

0 comments on commit e2cdc48

Please sign in to comment.