Make WordPress Core

Ticket #34189: 34189.patch

File 34189.patch, 757 bytes (added by stevenlinx, 8 years ago)
  • wp-config-sample.php

    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'); 
    6262 *
    6363 * You can have multiple installations in one database if you give each
    6464 * 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 *
    6571 */
    6672$table_prefix  = 'wp_';
    6773