Skip to content
This repository was archived by the owner on May 2, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions class/paypal.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class PayPal {
const API_USERNAME = "seller_1292143286_biz_api1.maly.cz";
const API_PASSWORD = "Q7*******JE";
const API_SIGNATURE = "AFcW*****V6l";
const BUTTONSOURCE = "AngellEYE_SP_Maly";
const PP_RETURN = "http://test/pp/ppreturn.php";
const PP_CANCEL = "http://test/pp/ppcancel.php";

Expand Down Expand Up @@ -76,6 +77,7 @@ private function buildQuery($data = array()){
$data['USER'] = self::API_USERNAME;
$data['PWD'] = self::API_PASSWORD;
$data['SIGNATURE'] = self::API_SIGNATURE;
$data['BUTTONSOURCE'] = self::BUTTONSOURCE;
$data['VERSION'] = '52.0';
$query = http_build_query($data);
return $query;
Expand Down