[Koha-patches] [PATCH] (bug #4954) allow date expiry modification only on step 0 and 3

Nahuel ANGELINETTI nahuel.angelinetti at biblibre.com
Wed Jul 7 10:23:16 CEST 2010


This add a verification, to allow automatic modification of expiry date, only if we are on a page that allow modification of expiry date.
---
 members/memberentry.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/members/memberentry.pl b/members/memberentry.pl
index 3b62849..b861ca9 100755
--- a/members/memberentry.pl
+++ b/members/memberentry.pl
@@ -237,7 +237,7 @@ if ($op eq 'save' || $op eq 'insert'){
   }
 }
 
-if ($op eq 'modify' || $op eq 'insert' || $op eq 'save' ){
+if ( ($op eq 'modify' || $op eq 'insert' || $op eq 'save') and ($step == 0 or $step == 3 )){
     unless ($newdata{'dateexpiry'}){
         my $arg2 = $newdata{'dateenrolled'} || C4::Dates->today('iso');
         $newdata{'dateexpiry'} = GetExpiryDate($newdata{'categorycode'},$arg2);
-- 
1.7.0.4



More information about the Koha-patches mailing list