Check-in [5d3783bd61]
Not logged in
Overview

SHA1 Hash:5d3783bd61d939ae246bc14272dbaf6c06d82c0b
Date: 2008-02-01 12:39:40
User: drh
Comment:Fix a typo on the user setup page. Reported via email by Brad Harder.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/info.c from [21bbd4bc04] to [abc907adcd].

@@ -762,12 +762,12 @@
      "INSERT INTO refs "
      "  SELECT 'f', rid FROM blob WHERE uuid GLOB '%s*'"
      "  UNION ALL"
      "  SELECT 'w', substr(tagname,6) FROM tag"
      "   WHERE tagname='wiki-%q'"
-     "  UNION ALL"
-     "  SELECT 't', tkt_uuid FROM ticket WHERE tkt_uuid GLOB '%s*';",
+     /*"  UNION ALL"
+     "  SELECT 't', tkt_uuid FROM ticket WHERE tkt_uuid GLOB '%s*';"*/,
      zName, zName, zName
   );
   cnt = db_int(0, "SELECT count(*) FROM refs");
   if( cnt==0 ){
     style_header("Broken Link");

Modified src/setup.c from [92e6402865] to [093a77e546].

@@ -414,11 +414,11 @@
   @ Login is required for user "<b>anonymous</b>" but the password
   @ is displayed on the login screen beside the password entry box
   @ so anybody who can read should be able to login as anonymous.
   @ On the other hand, spiders and web-crawlers will typically not
   @ be able to login.  Set the capabilities of the anonymous user
-  @ to things that you want any human to be able to do, but no any
+  @ to things that you want any human to be able to do, but not any
   @ spider.
   @ </p></li>
   @ </form>
   style_footer();
 }