diff --git a/README.md b/README.md
index a482017..8bccbcf 100644
--- a/README.md
+++ b/README.md
@@ -49,7 +49,6 @@ Name | Description | Details
--- | --- | ---
**Allow display name change** | With this option enabled user can change its display name. The display name change is propagated to the database. | Optional.
Default: false.
Requires: user *Display name* column.
**Allow password change** | Can user change its password. The password change is propagated to the database. See [Hash algorithms](#hash-algorithms). | Optional.
Default: false.
-**Prepend salt** | Prepend a salt to the password instead of appending it. See [User table](#user-table) -> **Salt**. | Optional.
Default: false.
**Use cache** | Use database query results cache. The cache can be cleared any time with the *Clear cache* button click. | Optional.
Default: false.
**Hash algorithm** | How users passwords are stored in the database. See [Hash algorithms](#hash-algorithms). | Mandatory.
**Email sync** | Sync e-mail address with the Nextcloud.
- *None* - Disables this feature. This is the default option.
- *Synchronise only once* - Copy the e-mail address to the Nextcloud preferences if its not set.
- *Nextcloud always wins* - Always copy the e-mail address to the database. This updates the user table.
- *SQL always wins* - Always copy the e-mail address to the Nextcloud preferences. | Optional.
Default: *None*.
Requires: user *Email* column.
@@ -73,6 +72,7 @@ Name | Description | Details
**Active** | Flag indicating if user can log in. | Optional.
Default: true.
**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.
+**Prepend salt** | Prepend a salt to the password instead of appending it. | Optional.
Default: false.
#### Group table
diff --git a/templates/admin.php b/templates/admin.php
index 2542b56..64c4301 100644
--- a/templates/admin.php
+++ b/templates/admin.php
@@ -109,8 +109,7 @@ function print_select_options(
t("Here are all currently supported options.")); ?>