View | Details | Raw Unified | Return to bug 8000
Collapse All | Expand All

(-)a/installer/data/mysql/updatedatabase.pl (-2 / +1 lines)
Lines 9974-9980 if ( CheckVersion($DBversion) ) { Link Here
9974
$DBversion = "3.19.00.XXX";
9974
$DBversion = "3.19.00.XXX";
9975
if ( CheckVersion($DBversion) ) {
9975
if ( CheckVersion($DBversion) ) {
9976
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('SendAllEmailsTo','',NULL,'This email will replace the To address in every message sent by the system.  This is meant to help testing and validation only.','Textarea')");
9976
    $dbh->do("INSERT INTO systempreferences (variable,value,options,explanation,type) VALUES ('SendAllEmailsTo','',NULL,'This email will replace the To address in every message sent by the system.  This is meant to help testing and validation only.','Textarea')");
9977
    $dbh->do( qw{ ALTER TABLE message_queue ADD sentto_address mediumtext AFTER to_address } );
9977
    $dbh->do( q{ ALTER TABLE message_queue ADD sentto_address mediumtext AFTER to_address } );
9978
    print "Upgrade to $DBversion done (Bug 8000 - add method to override the destination of every email sent by the system.)\n";
9978
    print "Upgrade to $DBversion done (Bug 8000 - add method to override the destination of every email sent by the system.)\n";
9979
    SetVersion ($DBversion);
9979
    SetVersion ($DBversion);
9980
}
9980
}
9981
- 

Return to bug 8000