|
Lines 615-620
sub execute_query {
Link Here
|
| 615 |
}; |
615 |
}; |
| 616 |
warn $@ if $@; |
616 |
warn $@ if $@; |
| 617 |
|
617 |
|
|
|
618 |
if ( $sql =~ m/password/ ) { |
| 619 |
return ( $sth, { passworderr => $sql } ); |
| 620 |
} |
| 621 |
|
| 618 |
foreach my $column ( @{ $sth->{NAME_lc} } ) { |
622 |
foreach my $column ( @{ $sth->{NAME_lc} } ) { |
| 619 |
if ( $column eq 'password' ) { |
623 |
if ( $column eq 'password' ) { |
| 620 |
return ( $sth, { passworderr => $column } ); |
624 |
return ( $sth, { passworderr => $column } ); |
| 621 |
- |
|
|