Index: branches/5.3.x/core/install/upgrades.php =================================================================== diff -u -N -r15483 -r15584 --- branches/5.3.x/core/install/upgrades.php (.../upgrades.php) (revision 15483) +++ branches/5.3.x/core/install/upgrades.php (.../upgrades.php) (revision 15584) @@ -1,6 +1,6 @@ Conn->Query('ALTER TABLE ' . $table_name . ' DROP RunInterval'); } + + /** + * Update to 5.3.0-B1 + * + * @param string $mode when called mode {before, after) + */ + public function Upgrade_5_3_0_B1($mode) + { + if ( $mode != 'before' ) { + return; + } + + $ml_helper = $this->Application->recallObject('kMultiLanguageHelper'); + /* @var $ml_helper kMultiLanguageHelper */ + + // add new ml columns to phrases/e-mail events + $ml_helper->createFields('phrases'); + $ml_helper->createFields('emailevents'); + } } \ No newline at end of file