Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Invalid email address

I found the offending code that I added in my BBconfig file in order to pull the same header as the rest of the site.

here’s the offending code:

if (file_exists(‘../wp-blog-header.php’))

require_once(‘../wp-blog-header.php’);

else

if (file_exists(‘../../wp-blog-header.php’))

require_once(‘../../wp-blog-header.php’);

which is place at the end like so:

/**

* bbPress Database Table prefix.

*

* You can have multiple installations in one database if you give each a unique

* prefix. Only numbers, letters, and underscores please!

*/

$bb_table_prefix = ‘bb_’;

/**

* bbPress Localized Language, defaults to English.

*

* Change this to localize bbPress. A corresponding MO file for the chosen

* language must be installed to a directory called “my-languages” in the root

* directory of bbPress. For example, install de.mo to “my-languages” and set

* BB_LANG to ‘de’ to enable German language support.

*/

define( ‘BB_LANG’, ” );

$bb->WP_BB = true;

if (file_exists(‘../wp-blog-header.php’))

require_once(‘../wp-blog-header.php’);

else

if (file_exists(‘../../wp-blog-header.php’))

require_once(‘../../wp-blog-header.php’);

?>

anything glaringly wrong with this?

Skip to toolbar