Commit: d14a4a0eb1a0c0d101377b32aca677899e07b7df Author: danbrown <[email protected]> Wed, 5 Jun 2013 13:13:12 -0400 Parents: fa94d93274cfe4f91c08a395f723adca63763531 Branches: master
Link: http://git.php.net/?p=web/bugs.git;a=commitdiff;h=d14a4a0eb1a0c0d101377b32aca677899e07b7df Log: Fixes bug #64662. Attribute was just in wrong location. Bugs: https://bugs.php.net/64662 Changed paths: M www/report.php Diff: diff --git a/www/report.php b/www/report.php index 20d22d7..2569657 100644 --- a/www/report.php +++ b/www/report.php @@ -532,7 +532,7 @@ display_bug_error($errors); ?> <tr> <th>Solve the problem:<br /><?php echo $captcha; ?> = ?</th> - <td class="form-input" autocomplete="off"><input type="text" name="captcha" /></td> + <td class="form-input"><input type="text" name="captcha" autocomplete="off"/></td> </tr> <?php } ?> -- PHP Webmaster List Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php
