File tree 2 files changed +8
-1
lines changed
lib/WebGUI/Workflow/Activity
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 5
5
- fixed #12227: Corrected AssetReport such that OrderBy works correctly.
6
6
- fixed #12238: Old template attachement in search template slows down sites
7
7
- fixed #12239: Still get cart error message after removing extra recurring items from the cart
8
+ - fixed #12240: Empty Extend Calendar Recurrance version tags
8
9
9
10
7.10.22
10
11
- rfe #12223: Add date type to content profiling (metadata)
Original file line number Diff line number Diff line change @@ -194,7 +194,13 @@ sub processRecurrence {
194
194
$event ->generateRecurrence($d );
195
195
}
196
196
197
- $versionTag ->commit;
197
+ ##If nothing needed to happen, then don't keep the tag around.
198
+ if ($versionTag ->getAssetCount > 0) {
199
+ $versionTag ->commit;
200
+ }
201
+ else {
202
+ $versionTag ->rollback;
203
+ }
198
204
return $time_limit ? 1 : 0;
199
205
} ## end sub processRecurrence
200
206
You can’t perform that action at this time.
0 commit comments