Skip to:
Content

bbPress.org


Ignore:
Timestamp:
01/10/2015 11:02:03 PM (10 years ago)
Author:
johnjamesjacoby
Message:

Cast value as (int) in bbp_get_form_forum_parent(), ensuring it is numerical for the remaining call stack. See #2742.

File:
1 edited

Legend:

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

    r5592 r5593  
    22612261        // Get _POST data
    22622262        if ( bbp_is_forum_form_post_request() && isset( $_POST['bbp_forum_id'] ) ) {
    2263             $forum_parent = $_POST['bbp_forum_id'];
     2263            $forum_parent = (int) $_POST['bbp_forum_id'];
    22642264
    22652265        // Get edit data
Note: See TracChangeset for help on using the changeset viewer.