http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=6840

Fred P <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #5 from Fred P <[email protected]> 2011-12-13 16:52:38 UTC ---
  We were receiving the same error while searching patrons from the patron
quick search. The patch is helpful, but still generates tons of log messages,
so we altered the moremember.pl around line 474 to omit the "$error => 1,"
editing the error parameter as follows:

---------------------------------------------------
    overdues_exist  => $overdues_exist,
    error           => 0,
    StaffMember     => ($category_type eq 'S'),
---------------------------------------------------


then we added this to the moremember.pl at line 485:
---------------------------------------------------

#addition to test error parameter status
if ( $error ) {
    $template -> param (
        $error => 1,
        error => 1,
    );
}

-----------------------------------------

-- 
Configure bugmail: 
http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA Contact for the bug.
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/

Reply via email to