Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: bbPress Integrates Fine With WP 2.1

Yep, and, even though Michael Adams made the newer version of the bbPress Integration plugin. Ryan Boren added two stubs in the 2.1 wp-includes/ folder, holding the same name as the original two.

So, these two calls:

require_once( ABSPATH . WPINC . ‘/registration-functions.php’ );

include_once (ABSPATH . WPINC . ‘/rss-functions.php’);

In any WordPress or bbPress plugins, you’ll still be safe! Inside those two stubs are:

registration-functions.php file:

<?php

// Deprecated. Use registration.php.

require_once(ABSPATH . WPINC . '/registration.php');

?>

rss-functions.php file:

<?php

// Deprecated. Use rss.php instead.

require_once (ABSPATH . WPINC . '/rss.php');

?>

Happy 2.1 Upgrading and bbPress Integrating peoples.. :D ;)

spencerp

Skip to toolbar