diff --git a/README.md b/README.md
index 536c6cd..f2ea96f 100644
--- a/README.md
+++ b/README.md
@@ -68,7 +68,7 @@ Name | Description | Details
**Password** | Password hash column. | Mandatory for user backend.
**Display name** | Display name column. | Optional.
**Active** | Flag indicating if user can log in. | Optional.
Default: true.
-**Can change avatar** | Flag indicating if user can change its avatar. | Optional.
Default: false.
+**Provide avatar** | Flag indicating if user can change its avatar. | Optional.
Default: false.
**Salt** | Salt which is appended to password when checking or changing the password. | Optional.
#### Group table
@@ -108,13 +108,13 @@ If you don't have any database model yet you can use below tables (MySQL):
```
CREATE TABLE sql_user
(
- username VARCHAR(16) PRIMARY KEY,
- display_name TEXT NULL,
- email TEXT NULL,
- home TEXT NULL,
- password TEXT NOT NULL,
- active TINYINT(1) NOT NULL DEFAULT '1',
- can_change_avatar BOOLEAN NOT NULL DEFAULT FALSE
+ username VARCHAR(16) PRIMARY KEY,
+ display_name TEXT NULL,
+ email TEXT NULL,
+ home TEXT NULL,
+ password TEXT NOT NULL,
+ active TINYINT(1) NOT NULL DEFAULT '1',
+ provide_avatar BOOLEAN NOT NULL DEFAULT FALSE
);
CREATE TABLE sql_group
diff --git a/templates/admin.php b/templates/admin.php
index 62e0d39..14d4683 100644
--- a/templates/admin.php
+++ b/templates/admin.php
@@ -148,7 +148,7 @@ function print_select_options(
print_text_input($l, "db-table-user-column-password", "Password", $_['db.table.user.column.password']);
print_text_input($l, "db-table-user-column-name", "Display name", $_['db.table.user.column.name']);
print_text_input($l, "db-table-user-column-active", "Active", $_['db.table.user.column.active']);
- print_text_input($l, "db-table-user-column-avatar", "Can change avatar", $_['db.table.user.column.avatar']);
+ print_text_input($l, "db-table-user-column-avatar", "Provide avatar", $_['db.table.user.column.avatar']);
print_text_input($l, "db-table-user-column-salt", "Salt", $_['db.table.user.column.salt']); ?>