Skip to:
Content

BuddyPress.org

Ticket #3093: fix-bbpress-install-links.patch

File fix-bbpress-install-links.patch, 1.3 KB (added by sbrajesh, 15 years ago)
  • bp-forums/bp-forums-admin.php

     
    3535
    3636                else : ?>
    3737
    38                         <p><?php printf( __( 'bbPress forum integration in BuddyPress has been set up correctly. If you are having problems you can <a href="%s" title="Reinstall bbPress">re-install</a>', 'buddypress' ), site_url( 'wp-admin/admin.php?page=bb-forums-setup&reinstall=1' ) ); ?>
     38                        <p><?php printf( __( 'bbPress forum integration in BuddyPress has been set up correctly. If you are having problems you can <a href="%s" title="Reinstall bbPress">re-install</a>', 'buddypress' ), network_admin_url( 'admin.php?page=bb-forums-setup&reinstall=1' ) ); ?>
    3939                        <p><?php _e( 'NOTE: The forums directory will only work if your bbPress tables are in the same database as your WordPress tables. If you are not using an existing bbPress install you can ignore this message.', 'buddypress' ) ?></p>
    4040
    4141                <?php endif; ?>
     
    4545}
    4646
    4747function bp_forums_bbpress_install_wizard() {
    48         $post_url = site_url( 'wp-admin/admin.php?page=bb-forums-setup' );
     48        $post_url = network_admin_url( 'admin.php?page=bb-forums-setup' );
    4949
    5050        $step = isset( $_REQUEST['step'] ) ? $_REQUEST['step'] : '';
    5151