- 7.3.9 release (for real this time hopefully)

- fix syntax error in EventManagementSystem (yay smoketests!)
- Note in gotchas that upgrade can take a long time to run
This commit is contained in:
Roy Johnson 2007-02-14 15:32:05 +00:00
parent 8baac2160b
commit 8d80c2c613
3 changed files with 15 additions and 9 deletions

File diff suppressed because one or more lines are too long

View file

@ -9,6 +9,12 @@ save you many hours of grief.
7.3.9
--------------------------------------------------------------------
* This upgrade may appear to freeze when it gets to the "Adding
thread rating column" step, especially if your site has a large
number of collaboration systems and posts. Let it run, it's
working. We have to recalculate the rating for every single post
and it can take upwards of an hour on large sites.
* If you're using the Events Management System and have a custom
checkout template, you will need to use the following template
variables to implement the fix: isError, errorLoop, error.

View file

@ -1449,7 +1449,7 @@ sub addCartVars {
$purchase->{newPrice} += $_->{price};
}
}
$purchase->{editIcon} = $self->session->icon->edit("func=addEventsToBadge;bid=".$purchase->{badgeId}.";purchaseCounter=".$i, $self->get('url')());
$purchase->{editIcon} = $self->session->icon->edit("func=addEventsToBadge;bid=".$purchase->{badgeId}.";purchaseCounter=".$i, $self->get('url'));
$purchase->{deleteIcon} = $self->session->icon->delete("func=addEventsToBadge;bid=none;purchaseCounter=".$i,$self->get('url'),$i18n->get('confirm delete purchase'));
$purchase->{'edit.url'} = $self->getUrl("func=addEventsToBadge;bid=".$purchase->{badgeId}.";purchaseCounter=".$i);
$purchase->{'delete.url'} = $self->getUrl("func=addEventsToBadge;bid=none;purchaseCounter=".$i);