Menu

#68 Use of uninitialized value Auditable.pm

Web_Product
open
nobody
bug (54)
5
2001-05-19
2001-05-19
Lee Weston
No

about line line 323

if($form_params->{submit_id} eq 'SEARCH_USER') {

should be something like

if( defined($form_params->{submit_id}) &&
($form_params->{submit_id} eq 'SEARCH_USER') ) {

Discussion


Log in to post a comment.