Plugin: BP Group Hierarchy

Join this plugin group to follow comments, support topics and reviews.

WP_DEBUG and WP_DEBUG_DISPLAY (2 posts)

Started 4 months, 2 weeks ago by: Umbrovskis.com

  • Profile picture of Umbrovskis.com Umbrovskis.com said 4 months, 2 weeks ago:

    if debug mode enabled, diplaying and braking admin part.
    fix: index.php (around) line #140

    if((defined( 'WP_DEBUG' ) && WP_DEBUG)) {
    	echo '<div class="log">BP Group Hierarchy - ' . $message . "</div>n";
    }

    to

    if((defined( 'WP_DEBUG' ) && WP_DEBUG && WP_DEBUG_DISPLAY!=false)) {
    	echo '<div class="log">BP Group Hierarchy - ' . $message . "</div>n";
    }
  • Profile picture of David Dean David Dean said 4 months, 1 week ago:

    Thanks for catching this! A fix has been added to the development version and will be included in the next release.