started migrating ems data

This commit is contained in:
JT Smith 2008-05-03 03:42:57 +00:00
parent 44c74c2299
commit 51019e5dca
3 changed files with 36 additions and 109 deletions

View file

@ -208,7 +208,8 @@ The unique id of the activity.
sub getActivity {
my $self = shift;
my $activityId = shift;
return WebGUI::Workflow::Activity->new($self->session, $activityId);
my $activity = WebGUI::Workflow::Activity->new($self->session, $activityId);
return $activity;
}
#-------------------------------------------------------------------