Re: Problem with admin headers and footers when upgrading to 1.0
I resolved this problem by adding “./” to the file names “admin-header.php” and “admin-footer.php” in the file /bbpressforumname/bb-admin/includes/functions.bb-admin.php. They appear on lines 6 and 13 of that file. The modified version of the first 14 lines of the file should read…
<?php
function bb_get_admin_header()
{
do_action( ‘bb_admin-header.php’ );
include( ‘./admin-header.php’ );
do_action( ‘bb_get_admin_header’ );
}
function bb_get_admin_footer()
{
do_action( ‘bb_admin-footer.php’ );
include( ‘./admin-footer.php’ );
}
perhaps this could be added as a bug fix for 1.0.1.