Completed
Push — master ( dcffd8...46ef5b )
by
unknown
02:12
created
wp-config-custom-sample.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -12,36 +12,36 @@
 block discarded – undo
12 12
  * @author Beñat Espiña <[email protected]>
13 13
  */
14 14
 
15
-define('WP_MEMORY_LIMIT',     '64M');
15
+define('WP_MEMORY_LIMIT', '64M');
16 16
 
17
-define('DB_NAME',             'database_name_here');
18
-define('DB_USER',             'username_here');
19
-define('DB_PASSWORD',         'password_here');
20
-define('DB_HOST',             'localhost');
21
-define('DB_CHARSET',          'utf8');
22
-define('DB_COLLATE',          '');
17
+define('DB_NAME', 'database_name_here');
18
+define('DB_USER', 'username_here');
19
+define('DB_PASSWORD', 'password_here');
20
+define('DB_HOST', 'localhost');
21
+define('DB_CHARSET', 'utf8');
22
+define('DB_COLLATE', '');
23 23
 
24
-define('WPLANG',                     '');       // '': default (English); 'es_ES': Spanish
25
-define('WP_DEBUG',                   true);
24
+define('WPLANG', ''); // '': default (English); 'es_ES': Spanish
25
+define('WP_DEBUG', true);
26 26
 define('AUTOMATIC_UPDATER_DISABLED', true);
27
-define('DISALLOW_FILE_EDIT',         true);
28
-define('DISALLOW_FILE_MODS',         true);
27
+define('DISALLOW_FILE_EDIT', true);
28
+define('DISALLOW_FILE_MODS', true);
29 29
 
30
-define('AUTH_KEY',           'Put your unique phrase here');
31
-define('SECURE_AUTH_KEY',    'Put your unique phrase here');
32
-define('LOGGED_IN_KEY',      'Put your unique phrase here');
33
-define('NONCE_KEY',          'Put your unique phrase here');
34
-define('AUTH_SALT',          'Put your unique phrase here');
35
-define('SECURE_AUTH_SALT',   'Put your unique phrase here');
36
-define('LOGGED_IN_SALT',     'Put your unique phrase here');
37
-define('NONCE_SALT',         'Put your unique phrase here');
30
+define('AUTH_KEY', 'Put your unique phrase here');
31
+define('SECURE_AUTH_KEY', 'Put your unique phrase here');
32
+define('LOGGED_IN_KEY', 'Put your unique phrase here');
33
+define('NONCE_KEY', 'Put your unique phrase here');
34
+define('AUTH_SALT', 'Put your unique phrase here');
35
+define('SECURE_AUTH_SALT', 'Put your unique phrase here');
36
+define('LOGGED_IN_SALT', 'Put your unique phrase here');
37
+define('NONCE_SALT', 'Put your unique phrase here');
38 38
 
39
-define('MAILER_HOST',        'smtp.mandrillapp.com');
40
-define('MAILER_PORT',        587);
41
-define('MAILER_USERNAME',    'Put the username here');
42
-define('MAILER_PASSWORD',    'Put the password here');
43
-define('MAILER_TO',          'The receiver email address');
44
-define('MAILER_FROM',        'The email address that will be shown to the receiver');
45
-define('MAILER_FROM_NAME',   'The name that will be shown to the receiver');
39
+define('MAILER_HOST', 'smtp.mandrillapp.com');
40
+define('MAILER_PORT', 587);
41
+define('MAILER_USERNAME', 'Put the username here');
42
+define('MAILER_PASSWORD', 'Put the password here');
43
+define('MAILER_TO', 'The receiver email address');
44
+define('MAILER_FROM', 'The email address that will be shown to the receiver');
45
+define('MAILER_FROM_NAME', 'The name that will be shown to the receiver');
46 46
 
47 47
 define('TRANSLATION_DOMAIN', 'Put your translation domain');
Please login to merge, or discard this patch.