Skip to content
Open
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 _includes/markdown/Design.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ If a management UI is impossible due to the nature of the project, credentials s
<?php
// Production API keys should ideally be defined in wp-config.php
// This section should default to a development or noop key instead.
if ( ! defined( 'CLIENT_MANDRILL_API_KEY' ) {
if ( ! defined( 'CLIENT_MANDRILL_API_KEY' ) ) {
if ( 'production' === wp_get_environment_type() ) {
define( 'CLIENT_MANDRILL_API_KEY', '1234567890' );
}
Expand Down