Diff
Not logged in

Differences From:

File src/db.c part of check-in [16eae22891] - Fix typo in "finding home dir" error error message. by bch on 2009-06-14 15:09:13. [view]

To:

File src/db.c part of check-in [623a9129c8] - Update to the latest SQLite. On the "Ticket" page, if "nobody" is not allowed to create new tickets but "anonymous" is, then offer a hyperlink to log in as anonymous. Change the default settings to be more secure. by drh on 2009-07-06 23:53:18. [view]

@@ -892,13 +892,15 @@
   );
   if( !setupUserOnly ){
     db_multi_exec(
        "INSERT INTO user(login,pw,cap,info)"
-       "   VALUES('anonymous','anonymous','ghknw','Anon');"
+       "   VALUES('anonymous','anonymous','ghmncz','Anon');"
        "INSERT INTO user(login,pw,cap,info)"
        "   VALUES('nobody','','jor','Nobody');"
        "INSERT INTO user(login,pw,cap,info)"
-       "   VALUES('developer','','deipt','Dev');"
+       "   VALUES('developer','','dei','Dev');"
+       "INSERT INTO user(login,pw,cap,info)"
+       "   VALUES('reader','','kptw','Reader');"
     );
   }
 }