We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4dda5ce commit 1a968bbCopy full SHA for 1a968bb
wordpress/wp-config.php
@@ -80,8 +80,8 @@
80
*
81
* @link https://codex.wordpress.org/Debugging_in_WordPress
82
*/
83
-define( 'WP_DEBUG', !!$_ENV['WP_DEBUG'] );
84
-define( 'SAVEQUERIES', !!$_ENV['WP_DEBUG'] );
+define( 'WP_DEBUG', $_ENV['WP_DEBUG'] == 'true' );
+define( 'SAVEQUERIES', $_ENV['WP_DEBUG'] == 'true' );
85
86
/* That's all, stop editing! Happy blogging. */
87
0 commit comments