Commit: 1094d418c3f1bd69c017af7e34bd504c6681cfc3 Author: Christoph M. Becker <[email protected]> Tue, 17 Mar 2015 21:50:30 +0100 Parents: 966dc8550a1c1aa729908b2f210993d0a4a23948 Branches: master
Link: http://git.php.net/?p=web/wiki.git;a=commitdiff;h=1094d418c3f1bd69c017af7e34bd504c6681cfc3 Log: clarified spam-prevention question on registration page Changed paths: M dokuwiki/inc/html.php Diff: diff --git a/dokuwiki/inc/html.php b/dokuwiki/inc/html.php index cd418ea..b8135a3 100644 --- a/dokuwiki/inc/html.php +++ b/dokuwiki/inc/html.php @@ -1591,7 +1591,7 @@ function html_register(){ } $form->addElement(form_makeTextField('fullname', $INPUT->post->str('fullname'), $lang['fullname'], '', 'block', $base_attrs)); $form->addElement(form_makeField('email','email', $INPUT->post->str('email'), $lang['email'], '', 'block', $email_attrs)); - $form->addElement(form_makeTextField('spam', $_POST['spam'], "Which email address do you have to mail now?", '', 'block', array('size'=>'50'))); + $form->addElement(form_makeTextField('spam', $_POST['spam'], 'To which email address do you have to send an email now?', '', 'block', array('size'=>'50'))); $form->addElement(form_makeButton('submit', '', $lang['btn_register'])); $form->endFieldset(); html_form('register', $form); -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
