ticket 12318: asset error causes asset manager to fail
This commit is contained in:
parent
fabf59fa54
commit
bce42bca47
2 changed files with 6 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
7.10.24
|
7.10.24
|
||||||
|
- fixed #12318: asset error causes asset manager to fail
|
||||||
- fixed #12308: error message used scalar as reference
|
- fixed #12308: error message used scalar as reference
|
||||||
- fixed #12256: Calendar Search doesn't show admin controls
|
- fixed #12256: Calendar Search doesn't show admin controls
|
||||||
- fixed #12268: Point of sale form missing from cart screen.
|
- fixed #12268: Point of sale form missing from cart screen.
|
||||||
|
|
|
||||||
|
|
@ -309,6 +309,11 @@ sub www_ajaxGetManagerPage {
|
||||||
for my $assetId ( @{ $p->getPageData } ) {
|
for my $assetId ( @{ $p->getPageData } ) {
|
||||||
my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId );
|
my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId );
|
||||||
|
|
||||||
|
unless( $asset ) {
|
||||||
|
$session->log->error('www_ajaxGetManagerPage: assetId="'.$assetId.'" failed in newByDynamicClass');
|
||||||
|
next;
|
||||||
|
}
|
||||||
|
|
||||||
# Populate the required fields to fill in
|
# Populate the required fields to fill in
|
||||||
my %fields = (
|
my %fields = (
|
||||||
assetId => $asset->getId,
|
assetId => $asset->getId,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue