# HG changeset patch # User Dan # Date 1207027582 14400 # Node ID c6118b9e13bdbaf7ab4defd1b999c4c13be6511f # Parent 9a52679143dbc2c9e12e424155f1b71bf2f6cc7d Fixed bad captcha refresh code on registration page diff -r 9a52679143db -r c6118b9e13bd plugins/SpecialUserFuncs.php --- a/plugins/SpecialUserFuncs.php Tue Apr 01 01:25:47 2008 -0400 +++ b/plugins/SpecialUserFuncs.php Tue Apr 01 01:26:22 2008 -0400 @@ -1070,7 +1070,7 @@ function regenCaptcha() { var frm = document.forms.regform; - document.getElementById('captchaimg').src = ''+frm.captchahash.value+'/'+Math.floor(Math.random() * 100000); + document.getElementById('captchaimg').src = '/'+Math.floor(Math.random() * 100000); return false; }