# HG changeset patch # User Dan # Date 1216516494 14400 # Node ID 74e03196fd43e3574102d3ff1bc420b8ce7e2428 # Parent 082b7b47b8593472d9564987faded3ef1c5890da Fixed typo (missing equals sign) in allow_anon param to autofill username diff -r 082b7b47b859 -r 74e03196fd43 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));