ef7ce6e04d479590353139876d0fa409b861b259
galt
  Wed Jun 12 14:10:52 2013 -0700
removing unneeded fix-sqli functions
diff --git src/hg/lib/cart.c src/hg/lib/cart.c
index 7ddaf66..675456f 100644
--- src/hg/lib/cart.c
+++ src/hg/lib/cart.c
@@ -1785,31 +1785,31 @@
         errAbort("can't find species list file var '%s' in cart\n",speciesUseFile);
 	}
     }
 
 struct lineFile *lf = lineFileOpen(val, TRUE);
 
 if (lf == NULL)
     errAbort("can't open species list file %s",val);
 
 if (hIsGsidServer())
     {
     conn= hAllocConn(genomeDb);
     while( ( lineFileChopNext(lf, words, sizeof(words)/sizeof(char *)) ))
         {
         sqlSafef(query, sizeof(query),
-	      "select id from %s where id like '%%%s'", msaTable, sqlCheckAlphaNum(words[0]));
+	      "select id from %s where id like '%%%s'", msaTable, words[0]);
 	sr = sqlGetResult(conn, query);
 	if (sqlNextRow(sr) != NULL)
             {
             dyStringPrintf(orderDY, "%s ",words[0]);
             sqlFreeResult(&sr);
             }
         }
     hFreeConn(&conn);
     }
 else
     {
     while( ( lineFileChopNext(lf, words, sizeof(words)/sizeof(char *)) ))
         {
         dyStringPrintf(orderDY, "%s ",words[0]);
         }