Update changelog and gotchas, and hopefully final update to r3226 bugfixes in

7.2.0 upgrade script.
This commit is contained in:
Drake 2006-11-10 18:29:37 +00:00
parent 331767daee
commit e982302c2a
3 changed files with 8 additions and 4 deletions

View file

@ -4,7 +4,7 @@
- Fixed bugs the SyncProfileToLdap workflow activity where it would ignore the
ldapAlias config setting and it crash (Martin Kamerbeek / Procolix)
- fix: entry in error log of WebGUI
- Fixed part of RSSCapable addition upgrade script in 7.2.0.
7.2.0
- Added server side spellchecker (Martin Kamerbeek / Procolix)

View file

@ -9,6 +9,10 @@ save you many hours of grief.
7.2.0
--------------------------------------------------------------------
* NOTE: if you tried to upgrade to 7.2.0 and it failed during the
addition of RSS From Parent capability, there have been bugs fixed
in that section of the relevant upgrade script in 7.2.1.
* Server side spellchecking has been added to this release. You must
install Text::Aspell, and any dictionary you like. If you want to
use spellchecking you have to setup the dictionaries you want your

View file

@ -205,10 +205,10 @@ EOT
# Blah, some duplication with RSSCapable.pm.
my ($revisionDate) = $session->db->quickArray("SELECT MAX(revisionDate) FROM Collaboration WHERE assetId = ?", [$csId]);
my $cs = WebGUI::Asset->newByDynamicClass($session, $csId, $revisionDate);
if ($cs->isPrototype or not($cs->get('status') eq 'approved' or
$cs->get('status') eq 'archived')) {
if ($cs->get('isPrototype') or not($cs->get('status') eq 'approved' or
$cs->get('status') eq 'archived')) {
$cs->update({ rssCapableRssEnabled => 1, rssCapableRssFromParentId => undef });
if (!$cs->isPrototype) {
if (!$cs->get('isPrototype')) {
# Update the most recent published one too.
my $csp = WebGUI::Asset->newByDynamicClass($session, $csId);
if ($csp) {