Skip to content

Commit

Permalink
Fixed checkbox processing
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Feb 12, 2025
1 parent 5808d02 commit 666941b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,8 @@ protected void performAction (@Nonnull final WebPageExecutionContext aWPEC,

try
{
final boolean bDeleteInSML = aWPEC.params ().getAsBoolean (PARAM_DELETE_IN_SML, aSettings.isSMLEnabled ());
final boolean bDeleteInSML = aWPEC.params ()
.isCheckBoxChecked (PARAM_DELETE_IN_SML, aSettings.isSMLEnabled ());

// Delete the service group both locally and on the SML (if active)!
final ISMPServiceGroupManager aServiceGroupMgr = SMPMetaManager.getServiceGroupMgr ();
Expand Down

0 comments on commit 666941b

Please sign in to comment.