diff --git a/wp-config-sample.php b/wp-config-sample.php
index 7cfaf32..9c09c0a 100644
a
|
b
|
define('NONCE_SALT', 'put your unique phrase here'); |
62 | 62 | * |
63 | 63 | * You can have multiple installations in one database if you give each |
64 | 64 | * a unique prefix. Only numbers, letters, and underscores please! |
| 65 | * |
| 66 | * At the installation time, DB tables names with $table_prefix are created. |
| 67 | * Post-installation, if you would like to change the $table_prefix, |
| 68 | * you'll either need to update the database table names manually or rely on a WP Plugin. |
| 69 | * No officially supported methods are available for changing the $table_prefix post-installation. |
| 70 | * |
65 | 71 | */ |
66 | 72 | $table_prefix = 'wp_'; |
67 | 73 | |