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

(-)a/C4/Reports/Guided.pm (-1 / +4 lines)
Lines 624-629 sub execute_query { Link Here
624
624
625
    return ( $sth, { queryerr => $sth->errstr } ) if ( $sth->err );
625
    return ( $sth, { queryerr => $sth->errstr } ) if ( $sth->err );
626
626
627
    if ( $sql =~ m/password/ ) {
628
        return ( $sth, { passworderr => $sql } );
629
    }
630
627
    foreach my $column ( @{ $sth->{NAME_lc} } ) {
631
    foreach my $column ( @{ $sth->{NAME_lc} } ) {
628
        if ( $column eq 'password' ) {
632
        if ( $column eq 'password' ) {
629
            return ( $sth, { passworderr => $column } );
633
            return ( $sth, { passworderr => $column } );
630
- 

Return to bug 37508