Skip to:
Content

bbPress.org


Ignore:
Timestamp:
03/24/2015 01:32:20 PM (11 years ago)
Author:
johnjamesjacoby
Message:

API: Introduce bbp_redirect()

  • Wraps wp_safe_redirect() & exit() calls
  • Prevents errors from potentially empty wp_get_referrer() results
  • Replace wp_safe_redirect() usages with bbp_redirect()

Fixes #2778.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/forums.php

    r5637 r5658  
    428428     *                    data, action and message
    429429     * @uses add_query_arg() To add custom args to the url
    430      * @uses wp_safe_redirect() Redirect the page to custom url
     430     * @uses bbp_redirect() Redirect the page to custom url
    431431     */
    432432    public function toggle_forum() {
     
    480480            // Redirect back to the forum
    481481            $redirect = add_query_arg( $message, remove_query_arg( array( 'action', 'forum_id' ) ) );
    482             wp_safe_redirect( $redirect );
    483 
    484             // For good measure
    485             exit();
     482            bbp_redirect( $redirect );
    486483        }
    487484    }
Note: See TracChangeset for help on using the changeset viewer.