Skip to content

Commit 78159c9

Browse files
committedJan 31, 2012
Fix typo introduced into Group.pm

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/WebGUI/Group.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -1627,7 +1627,7 @@ sub resetGroupFields {
16271627
ASSET: foreach my $assetClass ($db->buildArray('SELECT DISTINCT className FROM asset')) {
16281628
my $definition = eval { WebGUI::Pluggable::instanciate($assetClass, 'definition', [$session]); };
16291629
if ($@) {
1630-
$session->log->error("Unable to load className: " . $className . " when looking for asset definitions: " . $@);
1630+
$session->log->error("Unable to load className: " . $assetClass . " when looking for asset definitions: " . $@);
16311631
next ASSET;
16321632
}
16331633
SUBDEF: foreach my $subdef (@{ $definition }) {

0 commit comments

Comments
 (0)
Please sign in to comment.