Skip to content

Commit

Permalink
Fix typo introduced into Group.pm
Browse files Browse the repository at this point in the history
  • Loading branch information
perlDreamer committed Jan 31, 2012
1 parent 20e49b5 commit 78159c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WebGUI/Group.pm
Expand Up @@ -1627,7 +1627,7 @@ sub resetGroupFields {
ASSET: foreach my $assetClass ($db->buildArray('SELECT DISTINCT className FROM asset')) {
my $definition = eval { WebGUI::Pluggable::instanciate($assetClass, 'definition', [$session]); };
if ($@) {
$session->log->error("Unable to load className: " . $className . " when looking for asset definitions: " . $@);
$session->log->error("Unable to load className: " . $assetClass . " when looking for asset definitions: " . $@);
next ASSET;
}
SUBDEF: foreach my $subdef (@{ $definition }) {
Expand Down

0 comments on commit 78159c9

Please sign in to comment.