https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=23084
Bernardo Gonzalez Kriegel <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Status|Needs Signoff |Failed QA --- Comment #12 from Bernardo Gonzalez Kriegel <[email protected]> --- Sorry, does not apply, conflicts in C4/Items.pm C4/OAI/Sets.pm C4/Search.pm admin/searchengine/elasticsearch/mappings.pl also a few more cases. C4/OAI/Sets.pm: if(0 == grep /^$value$/, @subfield_values) { C4/OAI/Sets.pm: if(0 < grep /^$value$/, @subfield_values) { misc/translator/translate: if ( $cmd ne 'create' and $lang and not grep( /^$lang$/, @{ $installer->{langs} } ) ) { t/db_dependent/Acquisition.t: unless grep ( /^$field$/, @$exp_fields ); t/db_dependent/Budgets.t: my $is_in_new_budgets = grep /^$budget->{budget_id}$/, @new_budget_ids; t/db_dependent/Budgets.t: my $is_in_old_budgets = grep /^$budget->{budget_id}$/, @old_budget_ids; t/db_dependent/Serials.t:my @arrived_missing = map { my $status = $_->{status}; ( grep { /^$status$/ } qw( 2 4 41 42 43 44 5 ) ) ? $_ : () } @serials; t/db_dependent/Serials.t:my @others = map { my $status = $_->{status}; ( grep { /^$status$/ } qw( 2 4 41 42 43 44 5 ) ) ? () : $_ } @serials; t/db_dependent/Serials.t:@arrived_missing = map { my $status = $_->{status}; ( grep { /^$status$/ } qw( 2 4 41 42 43 44 5 ) ) ? $_ : () } @serials; t/db_dependent/Serials.t:@others = map { my $status = $_->{status}; ( grep { /^$status$/ } qw( 2 4 41 42 43 44 5 ) ) ? () : $_ } @serials; -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
