546a766b10b8d3d609187342c22b282e98920b9f
tdreszer
  Tue Apr 5 16:15:46 2011 -0700
Missed this reference as part of the rename from searchTracks.c to search.h
diff --git src/hg/lib/web.c src/hg/lib/web.c
index 2ba3afa..3fc546d 100644
--- src/hg/lib/web.c
+++ src/hg/lib/web.c
@@ -2,31 +2,31 @@
 #include <regex.h>
 #include "hCommon.h"
 #include "obscure.h"
 #include "dnautil.h"
 #include "errabort.h"
 #include "htmshell.h"
 #include "web.h"
 #include "hPrint.h"
 #include "hdb.h"
 #include "hui.h"
 #include "hgConfig.h"
 #include "cheapcgi.h"
 #include "dbDb.h"
 #include "hgColors.h"
 #include "hubConnect.h"
-#include "searchTracks.h"
+#include "search.h"
 #ifndef GBROWSE
 #include "axtInfo.h"
 #include "wikiLink.h"
 #include "googleAnalytics.h"
 #endif /* GBROWSE */
 #include "errabort.h"  // FIXME tmp hack to try to find source of popWarnHandler underflows in browse
 /* phoneHome business */
 #include <utime.h>
 #include <htmlPage.h>
 #include <signal.h>
 /* phoneHome business */
 
 static char const rcsid[] = "$Id: web.c,v 1.173 2010/05/20 03:14:17 kent Exp $";
 
 /* flag that tell if the CGI header has already been outputed */
@@ -47,32 +47,32 @@
 puts("\n");
 }
 
 void softAbort()
 {
 exit(0);
 }
 
 void webPushErrHandlers(void)
 /* Push warn and abort handler for errAbort(). */
 {
 if (webInTextMode)
     pushWarnHandler(textVaWarn);
 else
     pushWarnHandler(webVaWarn);
-pushAbortHandler(softAbort);
 hDumpStackPushAbortHandler();
+pushAbortHandler(softAbort);
 }
 
 void webPushErrHandlersCart(struct cart *cart)
 /* Push warn and abort handler for errAbort(); save cart for use in handlers. */
 {
 errCart = cart;
 webPushErrHandlers();
 }
 
 void webPopErrHandlers(void)
 /* Pop warn and abort handler for errAbort(). */
 {
 popWarnHandler();
 hDumpStackPopAbortHandler();
 popAbortHandler();