src/lib/cheapcgi.c 1.113

1.113 2009/03/19 21:41:00 tdreszer
For consistency, multi-shad should be defaultingh to '0' not '1'
Index: src/lib/cheapcgi.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/lib/cheapcgi.c,v
retrieving revision 1.112
retrieving revision 1.113
diff -b -B -U 4 -r1.112 -r1.113
--- src/lib/cheapcgi.c	18 Mar 2009 17:51:53 -0000	1.112
+++ src/lib/cheapcgi.c	19 Mar 2009 21:41:00 -0000	1.113
@@ -1237,9 +1237,9 @@
 	printf("<TD></TD>");
 puts("</TR></TABLE>");
 char buf[512];
 safef(buf, sizeof(buf), "%s%s", cgiMultListShadowPrefix(), name);
-cgiMakeHiddenVar(buf, "1");
+cgiMakeHiddenVar(buf, "0");
 }
 
 void cgiMakeCheckboxGroup(char *name, char *menu[], int menuSize, struct slName *checked,
 			  int tableColumns)