preparing for 7.0.5 release

fixed some bugs
This commit is contained in:
JT Smith 2006-08-09 16:09:17 +00:00
parent 3000fccb79
commit dfe92a73e2
7 changed files with 97 additions and 20 deletions

View file

@ -71,8 +71,10 @@ sub execute {
my $self = shift;
my $versionTag = shift;
foreach my $asset (@{$versionTag->getAssets}) {
$asset->exportAsHtml();
$asset->getContainer->exportAsHtml();
my $status = $asset->exportAsHtml();
return $self->ERROR unless ($status eq "success");
$status = $asset->getContainer->exportAsHtml();
return $self->ERROR unless ($status eq "success");
}
return $self->COMPLETE;
}