Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
swalkinshaw committed May 28, 2021
1 parent 403a0c9 commit b43d972
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@
* Upgrade `oscarotero/env` to `^2.0` ([#530](https://github.com/roots/bedrock/pull/530))
* chore(deps): Bump vlucas/phpdotenv from 4.1.4 to 4.1.5 ([#518](https://github.com/roots/bedrock/pull/518))
* Use Bedrock Autoloader package ([#519](https://github.com/roots/bedrock/pull/519))
* chore(deps): Bump vlucas/phpdotenv from 4.1.4 to 4.1.5 ([#518](https://github.com/roots/bedrock/pull/518))

### 1.13.5: 2020-05-11

Expand Down
1 change: 0 additions & 1 deletion config/application.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@
/**
* Custom Settings
*/
Config::define('DISALLOW_INDEXING', WP_ENV !== 'production');
Config::define('AUTOMATIC_UPDATER_DISABLED', true);
Config::define('DISABLE_WP_CRON', env('DISABLE_WP_CRON') ?: false);
// Disable the plugin and theme file editor in the admin
Expand Down
1 change: 1 addition & 0 deletions config/environments/development.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
Config::define('WP_DEBUG_DISPLAY', true);
Config::define('WP_DISABLE_FATAL_ERROR_HANDLER', true);
Config::define('SCRIPT_DEBUG', true);
Config::define('DISALLOW_INDEXING', true);

ini_set('display_errors', '1');

Expand Down
2 changes: 2 additions & 0 deletions config/environments/staging.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@
* Example: `Config::define('WP_DEBUG', true);`
* Example: `Config::define('DISALLOW_FILE_MODS', false);`
*/

Config::define('DISALLOW_INDEXING', true);

0 comments on commit b43d972

Please sign in to comment.