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

(-)a/Koha/Database.pm (-1 / +17 lines)
Lines 215-220 sub restore_schema { Link Here
215
    # return something, then this function should, too.
215
    # return something, then this function should, too.
216
}
216
}
217
217
218
=head2 get_schema_cached
219
220
=cut
221
222
sub get_schema_cached {
223
    return $database->{schema};
224
}
225
226
=head2 flush_schema_cache
227
228
=cut
229
230
sub flush_schema_cache {
231
    delete $database->{schema};
232
    return 1;
233
}
234
218
=head2 EXPORT
235
=head2 EXPORT
219
236
220
None by default.
237
None by default.
221
- 

Return to bug 18285