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

(-)a/Koha/Database.pm (-1 / +1 lines)
Lines 103-109 sub dbh { Link Here
103
                || $ENV{KOHA_TESTING}
103
                || $ENV{KOHA_TESTING}
104
            ) {
104
            ) {
105
                push @queries, q{
105
                push @queries, q{
106
                    SET sql_mode = 'ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'
106
                    SET sql_mode = 'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'
107
                };
107
                };
108
            } else {
108
            } else {
109
                push @queries, q{SET sql_mode = 'IGNORE_SPACE,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'}
109
                push @queries, q{SET sql_mode = 'IGNORE_SPACE,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'}
(-)a/Koha/Illbackend.pm (-4 / +3 lines)
Lines 53-62 sub existing_statuses { Link Here
53
    # the ILL request returns the correct status and info respective to its backend.
53
    # the ILL request returns the correct status and info respective to its backend.
54
    my $ill_requests = Koha::Illrequests->search(
54
    my $ill_requests = Koha::Illrequests->search(
55
            {backend => $backend_id},
55
            {backend => $backend_id},
56
            # {
56
            {
57
            #     columns => [ qw/status/ ],
57
            #     columns => [ qw/status/ ],
58
            #     group_by => [ qw/status/ ],
58
                group_by => [ qw/status/ ],
59
            # }
59
            }
60
        );
60
        );
61
61
62
    my @data;
62
    my @data;
63
- 

Return to bug 34223