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

(-)a/Koha/Schema/Result/SearchFilter.pm (-7 / +3 lines)
Lines 95-106 __PACKAGE__->set_primary_key("id"); Link Here
95
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8QjxOudinfXOrLj/KkZc5Q
95
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:8QjxOudinfXOrLj/KkZc5Q
96
96
97
__PACKAGE__->add_columns(
97
__PACKAGE__->add_columns(
98
            '+opac' => { is_boolean => 1 },
98
    '+opac'         => { is_boolean => 1 },
99
        );
99
    '+staff_client' => { is_boolean => 1 },
100
100
);
101
__PACKAGE__->add_columns(
102
            '+staff_client' => { is_boolean => 1 },
103
        );
104
101
105
# You can replace this text with custom code or comments, and it will be preserved on regeneration
106
1;
102
1;
(-)a/admin/search_filters.pl (-2 / +2 lines)
Lines 1-5 Link Here
1
#!/usr/bin/perl
1
#!/usr/bin/perl
2
# Copyright 2013 BibLibre
2
3
# Copyright 2022 ByWater Solutions
3
#
4
#
4
# This file is part of Koha
5
# This file is part of Koha
5
#
6
#
6
- 

Return to bug 17170