Diff
Not logged in

Differences From:

File src/setup.c part of check-in [adefb6c8db] - Provide a "Revert to Default" button for editing CSS. Grammar fix on login page. by eric on 2008-11-26 22:24:45. [view]

To:

File src/setup.c part of check-in [72e9eb6a0d] - Change • into • per ticket 2ed0655983b51af6. by drh on 2008-11-27 13:33:34. [view]

@@ -372,25 +372,25 @@
   if( strcmp(zLogin, "developer") ){
     char *z1, *z2;
     z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='developer'");
     while( z1 && *z1 ){
-      inherit[0x7f & *(z1++)] = "<font color=\"red\">&#149;</font>";
+      inherit[0x7f & *(z1++)] = "<font color=\"red\">&bull;</font>";
     }
     free(z2);
   }
   if( strcmp(zLogin, "anonymous") ){
     char *z1, *z2;
     z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='anonymous'");
     while( z1 && *z1 ){
-      inherit[0x7f & *(z1++)] = "<font color=\"blue\">&#149;</font>";
+      inherit[0x7f & *(z1++)] = "<font color=\"blue\">&bull;</font>";
     }
     free(z2);
   }
   if( strcmp(zLogin, "nobody") ){
     char *z1, *z2;
     z1 = z2 = db_text(0,"SELECT cap FROM user WHERE login='nobody'");
     while( z1 && *z1 ){
-      inherit[0x7f & *(z1++)] = "<font color=\"green\">&#149;</font>";
+      inherit[0x7f & *(z1++)] = "<font color=\"green\">&bull;</font>";
     }
     free(z2);
   }
 
@@ -486,20 +486,20 @@
   @ listed below.  Use these two settings with discretion.
   @ </p></li>
   @
   @ <li><p>
-  @ The "<font color="green"><big>&#149;</big></font>" mark indicates
+  @ The "<font color="green"><big>&bull;</big></font>" mark indicates
   @ the privileges of "nobody" that are available to all users
   @ regardless of whether or not they are logged in.
   @ </p></li>
   @
   @ <li><p>
-  @ The "<font color="blue"><big>&#149;</big></font>" mark indicates
+  @ The "<font color="blue"><big>&bull;</big></font>" mark indicates
   @ the privileges of "anonymous" that are inherited by all logged-in users.
   @ </p></li>
   @
   @ <li><p>
-  @ The "<font color="red"><big>&#149;</big></font>" mark indicates
+  @ The "<font color="red"><big>&bull;</big></font>" mark indicates
   @ the privileges of "developer" that are inherited by all users with
   @ the <b>Developer</b> privilege.
   @ </p></li>
   @