{php}
- $dir = SMARTY_DIR . '/../../CRM/Upgrade/4.7.22.msg_template/message_templates';
+ $dir = SMARTY_DIR . '/../../CRM/Upgrade/4.7.23.msg_template/message_templates';
$templates = array();
foreach (preg_grep('/\.tpl$/', scandir($dir)) as $filename) {
$parts = explode('_', basename($filename, '.tpl'));
$postUpgradeMessage .= '<p>civicrm_sms_provider ' . ts('has now had a domain id column added. As there is more than 1 domains in this install you need to manually set the domain id for the providers in this install') . '</p>';
}
}
- if ($rev == '4.7.22') {
+ if ($rev == '4.7.23') {
$postUpgradeMessage .= '<br /><br />' . ts('Default version of the following System Workflow Message Templates have been modified: <ul><li>Contribution Invoice</li></ul> If you have modified these templates, please review the new default versions and implement updates as needed to your copies (Administer > Communications > Message Templates > System Workflow Messages).');
}
}
*
* @param string $rev
*/
- public function upgrade_4_7_22($rev) {
+ public function upgrade_4_7_23($rev) {
$this->addTask('CRM-20387 - Add invoice_number column to civicrm_contribution', 'addColumn',
'civicrm_contribution', 'invoice_number', "varchar(255) COMMENT 'Human readable invoice number' DEFAULT NULL");
$this->addTask(ts('Upgrade DB to %1: SQL', array(1 => $rev)), 'runSql', $rev);