# HG changeset patch # User Matthew Wild # Date 1268302659 0 # Node ID 7ae5a537d7f176804c23825e3bd022f5c4ce5208 # Parent 7b0df9aad29ccd47ee3e914b1f837cc643080e6c Fix variable name diff -r 7b0df9aad29c -r 7ae5a537d7f1 js/supportchat.js --- a/js/supportchat.js Wed Mar 10 18:12:33 2010 +0000 +++ b/js/supportchat.js Thu Mar 11 10:17:39 2010 +0000 @@ -50,7 +50,7 @@ function on_question_submit() { var question_type = $("#support-question-type").val(); - var question_submitter = $("#support-question-name").val(); + var question_name = $("#support-question-name").val(); var question_text = $("#support-question-text").val(); alert(question_name + " submitted a " + question_type + " question:\n " + question_text);