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

(-)a/installer/data/mysql/atomicupdate/bug_33217.pl (-3 / +1 lines)
Lines 7-13 return { Link Here
7
        my ($args) = @_;
7
        my ($args) = @_;
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
8
        my ( $dbh, $out ) = @$args{qw(dbh out)};
9
9
10
        # Do you stuffs here
11
        $dbh->do(
10
        $dbh->do(
12
            q{
11
            q{
13
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
12
            INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES
Lines 15-20 return { Link Here
15
            ('AuthorLinkSortOrder','asc','asc|dsc|az|za','Specify the default sort order for author links','Choice')
14
            ('AuthorLinkSortOrder','asc','asc|dsc|az|za','Specify the default sort order for author links','Choice')
16
        }
15
        }
17
        );
16
        );
18
        say $out "Added new system preferences 'AuthorLinkSortBy' 'AuthorLinkSortOrder'";
17
        say $out "Added new system preferences 'AuthorLinkSortBy' and 'AuthorLinkSortOrder'";
19
    },
18
    },
20
};
19
};
21
- 

Return to bug 33217