From aa0b14de5f1e6884496b1d04593bb82063220dc2 Mon Sep 17 00:00:00 2001
From: substantialnoninfringinguser <substantialnoninfringinguser@gmail.com>
Date: Wed, 13 May 2009 05:32:45 +0100
Subject: [PATCH] [svn] Fix double / error Copied from
 http://cucc@cucc.survex.com/svn/trunk/expoweb/troggle/, rev. 8167 by aaron @
 1/17/2009 8:11 AM

---
 templates/survey.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates/survey.html b/templates/survey.html
index acd9d3c..ce62715 100644
--- a/templates/survey.html
+++ b/templates/survey.html
@@ -40,12 +40,12 @@
 	}
 	
 	function redirectSurvey(){
-		window.location = "{{ settings.URL_ROOT }}/survey/" + document.getElementById("expeditionChooser").value + "%23" + document.getElementById("surveyChooser").value;
+		window.location = "{{ settings.URL_ROOT }}survey/" + document.getElementById("expeditionChooser").value + "%23" + document.getElementById("surveyChooser").value;
 		document.getElementById("progressTableContent").style.display='hidden'
 	}
 	
 	function redirectYear(){
-		window.location = "{{ settings.URL_ROOT }}/survey/" + document.getElementById("expeditionChooser").value + "%23"
+		window.location = "{{ settings.URL_ROOT }}survey/" + document.getElementById("expeditionChooser").value + "%23"
 	}
 </script>
 {% endblock %}