Diff
Not logged in

Differences From:

File src/setup.c part of check-in [fe019f946b] - Change the name of the "anon-login-enable-captcha-filler" setting to "auto-captcha". Move the GUI setting of this setting over to the "Setup/Behavior" page. by drh on 2009-12-18 22:01:57. [view]

To:

File src/setup.c part of check-in [bb8193cfd0] - The previous "anon-captcha" check-in missed one spot. This check-in attempts to correct the problem. by drh on 2009-12-18 22:08:58. [view]

@@ -473,14 +473,9 @@
   @ </tr>
   @ <tr>
   @   <td align="right">Password:</td>
   if( strcmp(zLogin, "anonymous")==0 ){
-    int enabled = db_get_boolean( "anon-login-enable-captcha-filler", 0 );
-    char const * checked = enabled ? "checked=\"checked\"" : "";
-    /* User the password for "anonymous" as cleartext */
-    @   <td><input type="text" name="pw" value="%h(zPw)"/>
-    @   <br/>Enable password-filler button for anonymous login? <input type="checkbox" name="anonymousEnableAutofill" %s(checked)/><br/>
-    @   </td>
+    @   <td><input type="text" name="pw" value="%h(zPw)"></td>
   }else if( zPw[0] ){
     /* Obscure the password for all other users */
     @   <td><input type="password" name="pw" value="**********"></td>
   }else{