If you modify a member using another page than step 0 or 3, the expiry date is renewed. It shouldn't.
Patch for 3.0.x: http://lists.koha-community.org/pipermail/koha-patches/2010-July/012234.html
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.