]> git.mxchange.org Git - friendica.git/commitdiff
spelling: unknown
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 22 Mar 2023 04:08:47 +0000 (00:08 -0400)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Sun, 26 Mar 2023 20:14:16 +0000 (16:14 -0400)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
database.sql
doc/database/db_user.md
src/Module/Admin/Federation.php
static/dbstructure.config.php
view/js/autocomplete.js

index ec4f86309e6efa4451108643b6c52ae5d8ce2d96..c6761c7ef26b07bcd3ccca77ec939917826eafc1 100644 (file)
@@ -71,7 +71,7 @@ CREATE TABLE IF NOT EXISTS `user` (
        `verified` boolean NOT NULL DEFAULT '0' COMMENT 'user is verified through email',
        `blocked` boolean NOT NULL DEFAULT '0' COMMENT '1 for user is blocked',
        `blockwall` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to post to the profile page of the user',
-       `hidewall` boolean NOT NULL DEFAULT '0' COMMENT 'Hide profile details from unkown viewers',
+       `hidewall` boolean NOT NULL DEFAULT '0' COMMENT 'Hide profile details from unknown viewers',
        `blocktags` boolean NOT NULL DEFAULT '0' COMMENT 'Prohibit contacts to tag the post of this user',
        `unkmail` boolean NOT NULL DEFAULT '0' COMMENT 'Permit unknown people to send private mails to this user',
        `cntunkmail` int unsigned NOT NULL DEFAULT 10 COMMENT '',
index 7f58ce58f1573f066db0be0f47ec0ebd5bc9ddea..c1aefd6bee5cb192fbc12ba8bd41e2aedb310b7d 100644 (file)
@@ -32,7 +32,7 @@ Fields
 | verified                 | user is verified through email                                                    | boolean            | NO   |     | 0                   |                |
 | blocked                  | 1 for user is blocked                                                             | boolean            | NO   |     | 0                   |                |
 | blockwall                | Prohibit contacts to post to the profile page of the user                         | boolean            | NO   |     | 0                   |                |
-| hidewall                 | Hide profile details from unkown viewers                                          | boolean            | NO   |     | 0                   |                |
+| hidewall                 | Hide profile details from unknown viewers                                         | boolean            | NO   |     | 0                   |                |
 | blocktags                | Prohibit contacts to tag the post of this user                                    | boolean            | NO   |     | 0                   |                |
 | unkmail                  | Permit unknown people to send private mails to this user                          | boolean            | NO   |     | 0                   |                |
 | cntunkmail               |                                                                                   | int unsigned       | NO   |     | 10                  |                |
index 59399e639ca814d8612c374f04083a107a20dd53..517e8cb4ad55b3e32091837e0c4a4b084b1370a9 100644 (file)
@@ -391,7 +391,7 @@ class Federation extends BaseAdmin
                //
                // clean up version numbers
                //
-               // some platforms do not provide version information, add a unkown there
+               // some platforms do not provide version information, add a unknown there
                // to the version string for the displayed list.
                foreach ($versionCounts as $key => $value) {
                        if ($versionCounts[$key]['version'] == '') {
index 6eaad609efd160b7ba1c30f0e0ea1a6f67c95072..62ac04f1cf50de1bcf599a1cc99e07bf2b9b5d96 100644 (file)
@@ -127,7 +127,7 @@ return [
                        "verified" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "user is verified through email"],
                        "blocked" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "1 for user is blocked"],
                        "blockwall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Prohibit contacts to post to the profile page of the user"],
-                       "hidewall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Hide profile details from unkown viewers"],
+                       "hidewall" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Hide profile details from unknown viewers"],
                        "blocktags" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Prohibit contacts to tag the post of this user"],
                        "unkmail" => ["type" => "boolean", "not null" => "1", "default" => "0", "comment" => "Permit unknown people to send private mails to this user"],
                        "cntunkmail" => ["type" => "int unsigned", "not null" => "1", "default" => "10", "comment" => ""],
index 91dd0053f12e851455e35b539149563482d1b1dd..7d5bd0656c7ed07157635ffcaf849f7cbce9d569 100644 (file)
@@ -13,7 +13,7 @@
 
 function contact_search(term, callback, backend_url, type, mode) {
 
-       // Check if there is a conversation id to include the unkonwn contacts of the conversation
+       // Check if there is a conversation id to include the unknown contacts of the conversation
        var conv_id = document.activeElement.id.match(/\d+$/);
 
        // Check if there is a cached result that contains the same information we would get with a full server-side search