Skip to content
Merged
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
2 changes: 1 addition & 1 deletion start.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*
* @var string
*/
$this_sdk_version = '2.12.1';
$this_sdk_version = '2.12.1.1';

#region SDK Selection Logic --------------------------------------------------------------------

Expand Down
16 changes: 11 additions & 5 deletions templates/forms/subscription-cancellation.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,17 @@
$subscription_cancellation_text = '';
} else {
$subscription_cancellation_text = sprintf(
fs_text_inline(
"Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site.",
'deactivation-or-uninstall-message',
$slug
),
( $fs->is_theme() ?
fs_text_inline(
"Deactivating or uninstalling the %s will automatically disable the license, which you'll be able to use on another site.",
'deactivation-or-uninstall-message',
$slug
) :
fs_text_inline(
"Uninstalling the %s will automatically disable the license, which you'll be able to use on another site.",
'uninstall-message',
$slug
) ),
$module_label
) . ' ';
}
Expand Down