Update changelog and gotchas, and hopefully final update to r3226 bugfixes in
7.2.0 upgrade script.
This commit is contained in:
parent
331767daee
commit
e982302c2a
3 changed files with 8 additions and 4 deletions
|
|
@ -4,7 +4,7 @@
|
||||||
- Fixed bugs the SyncProfileToLdap workflow activity where it would ignore the
|
- Fixed bugs the SyncProfileToLdap workflow activity where it would ignore the
|
||||||
ldapAlias config setting and it crash (Martin Kamerbeek / Procolix)
|
ldapAlias config setting and it crash (Martin Kamerbeek / Procolix)
|
||||||
- fix: entry in error log of WebGUI
|
- fix: entry in error log of WebGUI
|
||||||
|
- Fixed part of RSSCapable addition upgrade script in 7.2.0.
|
||||||
|
|
||||||
7.2.0
|
7.2.0
|
||||||
- Added server side spellchecker (Martin Kamerbeek / Procolix)
|
- Added server side spellchecker (Martin Kamerbeek / Procolix)
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,10 @@ save you many hours of grief.
|
||||||
|
|
||||||
7.2.0
|
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
|
* Server side spellchecking has been added to this release. You must
|
||||||
install Text::Aspell, and any dictionary you like. If you want to
|
install Text::Aspell, and any dictionary you like. If you want to
|
||||||
use spellchecking you have to setup the dictionaries you want your
|
use spellchecking you have to setup the dictionaries you want your
|
||||||
|
|
|
||||||
|
|
@ -205,10 +205,10 @@ EOT
|
||||||
# Blah, some duplication with RSSCapable.pm.
|
# Blah, some duplication with RSSCapable.pm.
|
||||||
my ($revisionDate) = $session->db->quickArray("SELECT MAX(revisionDate) FROM Collaboration WHERE assetId = ?", [$csId]);
|
my ($revisionDate) = $session->db->quickArray("SELECT MAX(revisionDate) FROM Collaboration WHERE assetId = ?", [$csId]);
|
||||||
my $cs = WebGUI::Asset->newByDynamicClass($session, $csId, $revisionDate);
|
my $cs = WebGUI::Asset->newByDynamicClass($session, $csId, $revisionDate);
|
||||||
if ($cs->isPrototype or not($cs->get('status') eq 'approved' or
|
if ($cs->get('isPrototype') or not($cs->get('status') eq 'approved' or
|
||||||
$cs->get('status') eq 'archived')) {
|
$cs->get('status') eq 'archived')) {
|
||||||
$cs->update({ rssCapableRssEnabled => 1, rssCapableRssFromParentId => undef });
|
$cs->update({ rssCapableRssEnabled => 1, rssCapableRssFromParentId => undef });
|
||||||
if (!$cs->isPrototype) {
|
if (!$cs->get('isPrototype')) {
|
||||||
# Update the most recent published one too.
|
# Update the most recent published one too.
|
||||||
my $csp = WebGUI::Asset->newByDynamicClass($session, $csId);
|
my $csp = WebGUI::Asset->newByDynamicClass($session, $csId);
|
||||||
if ($csp) {
|
if ($csp) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue