http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8745
Jonathan Druart <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|Signed Off |Failed QA QA Contact| |[email protected] | |m --- Comment #8 from Jonathan Druart <[email protected]> --- This patch cannot work. the following line is wrong: if( undef $run_as_root and $run_user eq 'root') undef $run_as_root is always false. You wanted write if ( not defined $run_as_root and $run_user eq 'root' ) Marked as Failed QA. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://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/
