Changeset - 6d14f4b9bc8d
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 14 years ago 2011-04-07 15:17:16
ohnobinki@ohnopublishing.net
Fix problem when clicking ``Register for Classes'' where an XHTML validation error was thrown.

This error was caused by the ajax request using the HTTP GET method instead of POST. The HTTP GET method has a limitted length and the serialized querystring was much longer than that limit, causing fun errors. Perhaps this querystring limit was even on the browser side instead of apache-side... or perhaps apache was returning an error page to the browser about the querystring.
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
scripts/displayTables.js
Show inline comments
 
@@ -96,7 +96,8 @@ function slate_permutate_load(target, da
 
		error: function(xhr_jq, status_text, error)
 
		{
 
		    error_handler(target, status_text, null);
 
		}
 
		},
 
		type: 'POST'
 
		});
 
}
 

	
0 comments (0 inline, 0 general)