Paste assets in the clipboard which are archived.

This commit is contained in:
Colin Kuskie 2012-09-19 16:39:12 -07:00
parent 8aaa37e5e1
commit 50c7634800
2 changed files with 3 additions and 1 deletions

View file

@ -9,6 +9,7 @@
- fixed ... and the same problem in the Clipboard
- fixed: UpdateAssetSubscribers workflow activity ERRORs if the group cannot be found.
- fixed: EMS has issues showing badges WITHOUT related badge groups.
- fixed: It's okay to paste assets which are archived, because if you don't they stay in the clipboard forever.
7.10.26
- fixed: Template diagnostics when called without a session asset.

View file

@ -294,7 +294,8 @@ sub paste {
# Update lineage in search index.
my $assetIter = $pastedAsset->getLineageIterator(
['self', 'descendants'], {
statesToInclude => ['clipboard','clipboard-limbo']
statesToInclude => ['clipboard','clipboard-limbo'],
includeArchived => 1,
}
);
while ( 1 ) {