Skip to content
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
7 changes: 4 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 = "826dc8950ddacc738e9fade927a89cc9";
public static $versionNo = "P6.30";

//////////////////////////////////////////////////////////////////////
//
Expand All @@ -26,8 +26,9 @@ static function SetVersion()
md5_file($dirName . "/GatewayParameterList.php") .
md5_file($dirName . "/GatewayCodes.php");
GatewayChecksum::$checksum = md5($baseString);
print "checksum: " . GatewayChecksum::$checksum . "\n";
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 ONCLICK_LOGO_URL() { return "onclickLogoURL"; }

}

?>