Skip to content

RGOPS-4851: Add referrer URL request parameter #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions src/GatewayChecksum.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
//
class GatewayChecksum {
public static $checksum = "";
public static $baseChecksum = "30da002a9474eddfd8d4a2c6246cac31";
public static $versionNo = "P6.29";
public static $baseChecksum = "ae0d3a17b0f4e2313ee6e5139ee646f6";
public static $versionNo = "P6.30";

//////////////////////////////////////////////////////////////////////
//
Expand All @@ -27,7 +27,7 @@ static function SetVersion()
md5_file($dirName . "/GatewayCodes.php");
GatewayChecksum::$checksum = md5($baseString);
if (GatewayChecksum::$checksum != GatewayChecksum::$baseChecksum)
GatewayChecksum::$versionNo = "P6.29m";
GatewayChecksum::$versionNo = "P6.30m";
}
}

Expand Down
2 changes: 2 additions & 0 deletions src/GatewayRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ static function STYLE_SHEET3() { return "style3"; }

static function TRANSLATIONS() { return "translations"; }

static function REFERRER_URL() { return "referrerURL"; }

}

?>