Skip to content

RG-4489 Allow to set link on Hosted Page logo #32

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 1 commit 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
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"; }

}

?>