Skip to:
Content

bbPress.org


Ignore:
Timestamp:
07/10/2013 03:29:03 PM (12 years ago)
Author:
johnjamesjacoby
Message:

Use string values when comparing against super globals. Regression introduced in r4995. See #2358.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/forums/functions.php

    r5017 r5021  
    509509
    510510    // Update revision log
    511     if ( !empty( $_POST['bbp_log_forum_edit'] ) && ( 1 === $_POST['bbp_log_forum_edit'] ) && ( $revision_id = wp_save_post_revision( $forum_id ) ) ) {
     511    if ( !empty( $_POST['bbp_log_forum_edit'] ) && ( "1" === $_POST['bbp_log_forum_edit'] ) && ( $revision_id = wp_save_post_revision( $forum_id ) ) ) {
    512512        bbp_update_forum_revision_log( array(
    513513            'forum_id'    => $forum_id,
Note: See TracChangeset for help on using the changeset viewer.