We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fabf59f commit bce42bcCopy full SHA for bce42bc
docs/changelog/7.x.x.txt
@@ -1,4 +1,5 @@
1
7.10.24
2
+ - fixed #12318: asset error causes asset manager to fail
3
- fixed #12308: error message used scalar as reference
4
- fixed #12256: Calendar Search doesn't show admin controls
5
- fixed #12268: Point of sale form missing from cart screen.
lib/WebGUI/Content/AssetManager.pm
@@ -309,6 +309,11 @@ sub www_ajaxGetManagerPage {
309
for my $assetId ( @{ $p->getPageData } ) {
310
my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId );
311
312
+ unless( $asset ) {
313
+ $session->log->error('www_ajaxGetManagerPage: assetId="'.$assetId.'" failed in newByDynamicClass');
314
+ next;
315
+ }
316
+
317
# Populate the required fields to fill in
318
my %fields = (
319
assetId => $asset->getId,
0 commit comments