diff --git a/docs/changelog/7.x.x.txt b/docs/changelog/7.x.x.txt index 38560bcc3..c7bd1f5e2 100644 --- a/docs/changelog/7.x.x.txt +++ b/docs/changelog/7.x.x.txt @@ -1,4 +1,5 @@ 7.10.19 + - fixed #12169: extras uploads symlink export - Added ability to pass caller assetId to RenderThingMacro - Allow specific expirations for groups in userImport.pl diff --git a/lib/WebGUI/AssetExportHtml.pm b/lib/WebGUI/AssetExportHtml.pm index 6e25e3bc1..987b0d9d6 100644 --- a/lib/WebGUI/AssetExportHtml.pm +++ b/lib/WebGUI/AssetExportHtml.pm @@ -1076,16 +1076,16 @@ sub www_exportStatus { return $session->privilege->insufficient unless $session->user->isInGroup(13); my $form = $session->form; - my @vars = qw( - index depth userId extrasUploadsAction rootUrlAction exportUrl - exportRelated - ); + my @vars = qw(index depth userId rootUrlAction exportUrl exportRelated); $self->forkWithStatusPage({ plugin => 'ProgressTree', title => 'Page Export Status', method => 'exportInFork', groupId => 13, args => { + # Note the difference in spelling... + # v---no s s-----v + extrasUploadAction => scalar $form->get('extrasUploadsAction'), assetId => $self->getId, map { $_ => scalar $form->get($_) } @vars }