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

(-)a/Koha/OAI/Server/ListBase.pm (-1 / +1 lines)
Lines 79-85 sub GetRecords { Link Here
79
        }
79
        }
80
80
81
        $sql .= "
81
        $sql .= "
82
            ORDER BY timestamp
82
            ORDER BY timestamp,biblionumber
83
        ";
83
        ";
84
84
85
        # Use a subquery for sets since it allows us to use an index in
85
        # Use a subquery for sets since it allows us to use an index in
(-)a/t/db_dependent/OAI/Server.t (-2 lines)
Lines 112-118 foreach( 1..10 ) { Link Here
112
            },
112
            },
113
        },
113
        },
114
    };
114
    };
115
    sleep 2; # FIXME Why do we need this sleep?
116
}
115
}
117
116
118
my $syspref = {
117
my $syspref = {
119
- 

Return to bug 15108