[Koha-bugs] [Bug 6840] error in Template.pm in logs

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Tue Dec 13 17:52:38 CET 2011


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

Fred P <fred.pierre at smfpl.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |fred.pierre at smfpl.org

--- Comment #5 from Fred P <fred.pierre at smfpl.org> 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.


More information about the Koha-bugs mailing list