Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/wp-admin/includes/schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ function populate_options( array $options = array() ) {
'rss_use_excerpt' => 0,
'mailserver_url' => 'mail.example.com',
'mailserver_login' => 'login@example.com',
'mailserver_pass' => 'password',
'mailserver_pass' => '',
'mailserver_port' => 110,
'default_category' => 1,
'default_comment_status' => 'open',
Expand Down
6 changes: 3 additions & 3 deletions tests/phpunit/tests/admin/includesSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function data_populate_options() {
'rss_use_excerpt' => '0',
'mailserver_url' => 'mail.example.com',
'mailserver_login' => 'login@example.com',
'mailserver_pass' => 'password',
'mailserver_pass' => '',
),
),
array(
Expand All @@ -137,7 +137,7 @@ public function data_populate_options() {
'rss_use_excerpt' => '1',
'mailserver_url' => 'mail.example.com',
'mailserver_login' => 'login@example.com',
'mailserver_pass' => 'password',
'mailserver_pass' => '',
),
),
array(
Expand All @@ -151,7 +151,7 @@ public function data_populate_options() {
'rss_use_excerpt' => '0',
'mailserver_url' => 'mail.example.com',
'mailserver_login' => 'login@example.com',
'mailserver_pass' => 'password',
'mailserver_pass' => '',
),
),
array(
Expand Down