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

(-)a/installer/data/mysql/atomicupdate/bug_21633_remove_finesMode_test.perl (-2 / +1 lines)
Lines 2-8 $DBversion = 'XXX'; Link Here
2
if( CheckVersion( $DBversion ) ) {
2
if( CheckVersion( $DBversion ) ) {
3
    $dbh->do(q{
3
    $dbh->do(q{
4
        UPDATE systempreferences SET value = 'off'
4
        UPDATE systempreferences SET value = 'off'
5
        WHERE variable = 'finesMode' and value = 'test'
5
        WHERE variable = 'finesMode' AND (value <> 'production' OR value IS NULL)
6
    });
6
    });
7
    $dbh->do(q{
7
    $dbh->do(q{
8
        UPDATE systempreferences SET options = 'off|production',
8
        UPDATE systempreferences SET options = 'off|production',
9
- 

Return to bug 21633