Skip to content

Commit

Permalink
Fix invocation of print_captcha_input() with too many arguments
Browse files Browse the repository at this point in the history
Conflicts:
	library/adodb
	library/phpmailer
	signup_page.php
  • Loading branch information
rlerdorf authored and rombert committed Oct 30, 2013
1 parent ca15c2e commit 7e25153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signup_page.php
Expand Up @@ -95,7 +95,7 @@
echo '<div class="field-container">';
echo '<label for="captcha-field"><span>' . lang_get( 'signup_captcha_request_label' ) . '</span></label>';
echo '<span id="captcha-input" class="input">';
print_captcha_input( 'captcha', '' );
print_captcha_input( 'captcha' );
echo '<span class="captcha-image"><img src="library/securimage/securimage_show.php" alt="visual captcha" /></span>';
echo ' <object type="application/x-shockwave-flash" data="library/securimage/securimage_play.swf?audio_file=library/securimage/securimage_play.php&amp;bgColor1=#fff&amp;bgColor2=#fff&amp;iconColor=#777&amp;borderWidth=1&amp;borderColor=#000" width="19" height="19">
<param name="movie" value="library/securimage/securimage_play.swf?audio_file=library/securimage/securimage_play.php&amp;bgColor1=#fff&amp;bgColor2=#fff&amp;iconColor=#777&amp;borderWidth=1&amp;borderColor=#000" />
Expand Down

0 comments on commit 7e25153

Please sign in to comment.