From f454c058dd5529f24b5a34b689c85b12d691880a Mon Sep 17 00:00:00 2001 From: Leo Fajardo Date: Thu, 1 Aug 2024 01:26:13 +0800 Subject: [PATCH] [license-dialog] Fixed the retrieving of the selected license's ID from the license update dialog. --- start.php | 2 +- templates/forms/license-activation.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/start.php b/start.php index bc8db040..398dce81 100644 --- a/start.php +++ b/start.php @@ -15,7 +15,7 @@ * * @var string */ - $this_sdk_version = '2.9.0'; + $this_sdk_version = '2.9.0.1'; #region SDK Selection Logic -------------------------------------------------------------------- diff --git a/templates/forms/license-activation.php b/templates/forms/license-activation.php index f6b7783b..0d9de1d8 100644 --- a/templates/forms/license-activation.php +++ b/templates/forms/license-activation.php @@ -569,7 +569,7 @@ function registerEventHandlers() { licenseKey = $otherLicenseKey.val(); } else { if ( ! hasLicensesDropdown ) { - licenseID = $availableLicenseKey.data( 'id' ); + licenseID = $availableLicenseKey.data( 'id' ).toString(); } else { licenseID = $licensesDropdown.val(); }