Index: branches/RC/core/install/upgrades.php =================================================================== diff -u -r11201 -r11237 --- branches/RC/core/install/upgrades.php (.../upgrades.php) (revision 11201) +++ branches/RC/core/install/upgrades.php (.../upgrades.php) (revision 11237) @@ -211,6 +211,32 @@ */ function Upgrade_4_3_9($mode) { + // 1. find In-Portal old Conn->GetCol($sql)); + + // 2. replace In-Portal old ' => '', + ' ' ' ' ' ' ' '', + ); + + foreach ($replacements as $old_tag => $new_tag) { + $sql = 'UPDATE '.TABLE_PREFIX.'EmailMessage + SET Template = REPLACE(Template, '.$this->Conn->qstr($old_tag).', '.$this->Conn->qstr($new_tag).') + WHERE EventId IN ('.$event_ids.')'; + $this->Conn->Query($sql); + } + if ($mode == 'after') { $this->_insertInPortalData(); $this->_removeDuplicatePhrases();