fix a typo in newBySku
This commit is contained in:
parent
9b23399fdd
commit
a5b06fdfbd
1 changed files with 1 additions and 1 deletions
|
|
@ -350,7 +350,7 @@ The sku attached to the object you wish to instanciate.
|
|||
|
||||
sub newBySku {
|
||||
my ($class, $session, $sku) = @_;
|
||||
my $assetId = $session->db->quickScalar("select assetId from Sku where sku=?", [$sku]);
|
||||
my $assetId = $session->db->quickScalar("select assetId from sku where sku=?", [$sku]);
|
||||
return WebGUI::Asset->newByDynamicClass($session, $assetId);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue