WP_DEBUG and WP_DEBUG_DISPLAY
-
if debug mode enabled, diplaying and braking admin part.
fix: index.php (around) line #140`if((defined( ‘WP_DEBUG’ ) && WP_DEBUG)) {
echo ‘BP Group Hierarchy – ‘ . $message . “n”;
}`
to
`if((defined( ‘WP_DEBUG’ ) && WP_DEBUG && WP_DEBUG_DISPLAY!=false)) {
echo ‘BP Group Hierarchy – ‘ . $message . “n”;
}`
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
You must be logged in to reply to this topic.