[Koha-cvs] koha/acqui.simple additem.pl [dev_week]

Joshua Ferraro jmf at kados.org
Tue Oct 3 17:31:55 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		dev_week
Changes by:	Joshua Ferraro <kados>	06/10/03 15:31:55

Modified files:
	acqui.simple   : additem.pl 

Log message:
	remove DISABLE READONLY for fields with authorized values -- sometimes the
	librarian needs to edit them ... and also, the values were being deleted if
	they existed.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/acqui.simple/additem.pl?cvsroot=koha&only_with_tag=dev_week&r1=1.27.2.19.2.3&r2=1.27.2.19.2.4

Patches:
Index: additem.pl
===================================================================
RCS file: /sources/koha/koha/acqui.simple/Attic/additem.pl,v
retrieving revision 1.27.2.19.2.3
retrieving revision 1.27.2.19.2.4
diff -u -b -r1.27.2.19.2.3 -r1.27.2.19.2.4
--- additem.pl	1 Oct 2006 16:10:28 -0000	1.27.2.19.2.3
+++ additem.pl	3 Oct 2006 15:31:55 -0000	1.27.2.19.2.4
@@ -1,6 +1,6 @@
 #!/usr/bin/perl
 
-# $Id: additem.pl,v 1.27.2.19.2.3 2006/10/01 16:10:28 kados Exp $
+# $Id: additem.pl,v 1.27.2.19.2.4 2006/10/03 15:31:55 kados Exp $
 #
 # Copyright 2000-2002 Katipo Communications
 #
@@ -347,7 +347,7 @@
 			require $plugin;
 			my $extended_param = plugin_parameters($dbh,$record,$tagslib,$i,0);
 			my ($function_name,$javascript) = plugin_javascript($dbh,$record,$tagslib,$i,0);
-			$subfield_data{marc_value}="<input type=\"text\" name=\"field_value\"  size=47 maxlength=255 DISABLE READONLY OnFocus=\"javascript:Focus$function_name($i)\" OnBlur=\"javascript:Blur$function_name($i)\"> <a href=\"javascript:Clic$function_name($i)\">...</a> $javascript";
+			$subfield_data{marc_value}="<input type=\"text\" name=\"field_value\"  size=47 maxlength=255 OnFocus=\"javascript:Focus$function_name($i)\" OnBlur=\"javascript:Blur$function_name($i)\"> <a href=\"javascript:Clic$function_name($i)\">...</a> $javascript";
 		} else {
 			$subfield_data{marc_value}="<input type=\"text\" name=\"field_value\" value=\"$value\" size=50 maxlength=255>";
 		}





More information about the Koha-cvs mailing list