[Koha-cvs] koha/members memberentry.pl [dev_week]

Kyle Hall kyle.m.hall at gmail.com
Fri Sep 21 16:52:02 CEST 2007


CVSROOT:	/sources/koha
Module name:	koha
Branch:		dev_week
Changes by:	Kyle Hall <kylemhall>	07/09/21 14:52:02

Modified files:
	members        : memberentry.pl 

Log message:
	A check for the var $modify was looking for 'edit', it should have been looking for 'Edit'.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/members/memberentry.pl?cvsroot=koha&only_with_tag=dev_week&r1=1.5.2.13.2.4&r2=1.5.2.13.2.5

Patches:
Index: memberentry.pl
===================================================================
RCS file: /sources/koha/koha/members/memberentry.pl,v
retrieving revision 1.5.2.13.2.4
retrieving revision 1.5.2.13.2.5
diff -u -b -r1.5.2.13.2.4 -r1.5.2.13.2.5
--- memberentry.pl	12 Jun 2007 16:49:40 -0000	1.5.2.13.2.4
+++ memberentry.pl	21 Sep 2007 14:52:01 -0000	1.5.2.13.2.5
@@ -2,7 +2,7 @@
 # NOTE: This file uses standard 8-space tabs
 #       DO NOT SET TAB SIZE TO 4
 
-# $Id: memberentry.pl,v 1.5.2.13.2.4 2007/06/12 16:49:40 kylemhall Exp $
+# $Id: memberentry.pl,v 1.5.2.13.2.5 2007/09/21 14:52:01 kylemhall Exp $
 
 #script to set up screen for modification of borrower details
 #written 20/12/99 by chris at katipo.co.nz
@@ -289,7 +289,7 @@
 	}
 
         my $CGIbranch;
-	if ( $modify eq 'edit' ) {
+	if ( $modify eq 'Edit' ) {
 	  $CGIbranch=CGI::scrolling_list( -name     => 'branchcode',
 					-id => 'branchcode',
 					-class => 'focus',





More information about the Koha-cvs mailing list