Summary: | modifying a member renew his card | ||
---|---|---|---|
Product: | Koha | Reporter: | Nahuel Angelinetti <nahuel.angelinetti> |
Component: | Patrons | Assignee: | Nahuel Angelinetti <nahuel.angelinetti> |
Status: | CLOSED FIXED | QA Contact: | Bugs List <koha-bugs> |
Severity: | normal | ||
Priority: | PATCH-Sent (DO NOT USE) | CC: | chris, gmcharlt |
Version: | unspecified | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | --- |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: |
Description
Nahuel Angelinetti
2010-07-07 08:19:23 UTC
Testing on HEAD: 1. Chose patron record with expiration date 2005-05-10. 2. Opened the patron record for editing by clicking a "step 6" link: /cgi-bin/koha/members/memberentry.pl?op=modify&borrowernumber=XX&step=6 3. Edited record, clicked "Save." 4. Patron expiration date has not changed. Here's the same code section from the file in HEAD: if ($op eq 'modify' || $op eq 'insert' || $op eq 'save' ){ if (exists ($newdata{'dateexpiry'}) && !($newdata{'dateexpiry'})){ my $arg2 = $newdata{'dateenrolled'} || C4::Dates->today('iso'); $newdata{'dateexpiry'} = GetExpiryDate($newdata{'categorycode'},$arg2); } } I'm guessing this is the patch for HEAD? http://lists.koha-community.org/pipermail/koha-patches/2010-July/012235.html Patch pushed. Please test. I note, however, that Owen was not able to reproduce the bug. |