diff --git a/RockWeb/Plugins/org_newpointe/CheckinBatchCut/CustomCheckinSuccess.ascx.cs b/RockWeb/Plugins/org_newpointe/CheckinBatchCut/CustomCheckinSuccess.ascx.cs index 1322094..3e328df 100644 --- a/RockWeb/Plugins/org_newpointe/CheckinBatchCut/CustomCheckinSuccess.ascx.cs +++ b/RockWeb/Plugins/org_newpointe/CheckinBatchCut/CustomCheckinSuccess.ascx.cs @@ -129,7 +129,10 @@ protected override void OnLoad( EventArgs e ) .OrderBy( l => l.PersonId ) .ThenBy( l => l.Order ) .ToList().ForEach( l => l.LabelFile = urlRoot + l.LabelFile.Replace( "GetFile.ashx", "NP_GetCheckinLabel.ashx" ) ); - printFromClient.Take( printFromClient.Count() - 1 ).ToList().ForEach( l => l.LabelFile += "&delaycut=T" ).ForEach( l => l.LabelKey += "-nocut" ); + printFromClient.Take( printFromClient.Count() - 1 ).ToList().ForEach( l => { + l.LabelFile += "&delaycut=T"; + l.LabelKey += "-nocut"; + } ); AddLabelScript( printFromClient.ToJson() ); }