Asset definitions use tableName, not table_name
This commit is contained in:
parent
34182a39ee
commit
89b7ecdf5b
1 changed files with 4 additions and 2 deletions
|
|
@ -28,11 +28,13 @@ sub import {
|
||||||
}
|
}
|
||||||
my $definition = (@_ == 1 && ref $_[0]) ? $_[0] : { @_ };
|
my $definition = (@_ == 1 && ref $_[0]) ? $_[0] : { @_ };
|
||||||
if ( my $properties = $definition->{properties} ) {
|
if ( my $properties = $definition->{properties} ) {
|
||||||
my $table = $definition->{table_name};
|
my $table = $definition->{tableName};
|
||||||
for ( my $i = 1; $i < @{ $properties }; $i += 2) {
|
for ( my $i = 1; $i < @{ $properties }; $i += 2) {
|
||||||
$propeties->[$i]{table_name} = $table;
|
$propeties->[$i]{tableName} = $table;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# WebGUI::Definition->import uses caller, so avoid the extra entry in the call stack
|
||||||
my $next = $class->next::can;
|
my $next = $class->next::can;
|
||||||
@_ = ($class, $definition);
|
@_ = ($class, $definition);
|
||||||
goto $next;
|
goto $next;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue