Fixed typo (missing equals sign) in allow_anon param to autofill username
authorDan
Sat, 19 Jul 2008 21:14:54 -0400
changeset 649 74e03196fd43
parent 648 082b7b47b859
child 650 e45183014778
Fixed typo (missing equals sign) in allow_anon param to autofill username
includes/clientside/static/autofill.js
--- a/includes/clientside/static/autofill.js	Sat Jul 19 21:14:26 2008 -0400
+++ b/includes/clientside/static/autofill.js	Sat Jul 19 21:14:54 2008 -0400
@@ -27,7 +27,7 @@
     
     var allow_anon = ( params.allow_anon ) ? '1' : '0';
     // setup the dataset
-    window[ds_name] = new Spry.Data.JSONDataSet(makeUrlNS('Special', 'Autofill', 'type=' + fillclass + '&allow_anon' + allow_anon));
+    window[ds_name] = new Spry.Data.JSONDataSet(makeUrlNS('Special', 'Autofill', 'type=' + fillclass + '&allow_anon=' + allow_anon));
     
     // inject our HTML wrapper
     var template = this.template.replace(new RegExp('--ID--', 'g'), element.id).replace(new RegExp('--CLASS--', 'g', fillclass));