Check-in [bb8193cfd0]
Not logged in
Overview

SHA1 Hash:bb8193cfd0770a1ec3cc07eacb86653d47f3bbaa
Date: 2009-12-18 22:08:58
User: drh
Comment:The previous "anon-captcha" check-in missed one spot. This check-in attempts to correct the problem.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/setup.c from [63e15c6923] to [9651fece26].

@@ -472,16 +472,11 @@
   @   </td>
   @ </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{
     /* Show an empty password as an empty input field */