1d72deb939d79331f80c9fffc1bef03d3c284186
angie
  Tue May 21 13:08:04 2024 -0700
Updating a couple instances of db-->org that I missed previously.

diff --git src/hg/hgPhyloPlace/hgPhyloPlace.c src/hg/hgPhyloPlace/hgPhyloPlace.c
index 4f96671..b8a242d 100644
--- src/hg/hgPhyloPlace/hgPhyloPlace.c
+++ src/hg/hgPhyloPlace/hgPhyloPlace.c
@@ -483,40 +483,40 @@
 if (lf != NULL)
     {
     // Use trackLayout to get hgTracks parameters relevant to displaying trees:
     struct trackLayout tl;
     trackLayoutInit(&tl, cart);
     // Do our best to place the user's samples, make custom tracks if successful:
     char *phyloPlaceTree = cartOptionalString(cart, "phyloPlaceTree");
     int subtreeSize = cartUsualInt(cart, "subtreeSize", 50);
     boolean success = phyloPlaceSamples(lf, db, org, phyloPlaceTree, measureTiming, subtreeSize,
                                         &tl, cart);
     if (! success)
         {
         puts("<p></p>");
         puts("  </div>");
         // Let the user upload something else and try again:
-        inputForm(db);
+        inputForm(org);
         }
     }
 else
     {
     warn("Unable to read your uploaded data - please choose a file and try again, or click the "
          "&quot;try example&quot; button.");
     // Let the user try again:
     puts("  </div>");
-    inputForm(db);
+    inputForm(org);
     }
 puts("</div>\n");
 
 newPageEndStuff();
 }
 
 static boolean serverAuthOk(char *plain, char *salty)
 /* Construct a salted hash of plain and compare it to salty. */
 {
 char *salt = cfgOption(CFG_LOGIN_COOKIE_SALT);
 if (! salt)
     salt = "";
 char *plainMd5 = md5HexForString(plain);
 struct dyString *dySalted = dyStringCreate("%s-%s", salt, plainMd5);
 char *rightSalty = md5HexForString(dySalted->string);