Skip to:
Content

bbPress.org


Ignore:
Timestamp:
07/14/2015 12:46:38 AM (11 years ago)
Author:
johnjamesjacoby
Message:

I think this building should be condemned. There's serious metal fatigue in all the load-bearing members, the wiring is substandard, it's completely inadequate for our power needs, and the neighborhood is like a demilitarized zone.

File:
1 edited

Legend:

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

    r5770 r5829  
    9292     */
    9393    private function bail() {
    94         if ( !isset( get_current_screen()->post_type ) || ( $this->post_type != get_current_screen()->post_type ) ) {
     94        if ( ! isset( get_current_screen()->post_type ) || ( $this->post_type != get_current_screen()->post_type ) ) {
    9595            return true;
    9696        }
     
    301301
    302302        // Nonce check
    303         if ( empty( $_POST['bbp_forum_metabox'] ) || !wp_verify_nonce( $_POST['bbp_forum_metabox'], 'bbp_forum_metabox_save' ) ) {
     303        if ( empty( $_POST['bbp_forum_metabox'] ) || ! wp_verify_nonce( $_POST['bbp_forum_metabox'], 'bbp_forum_metabox_save' ) ) {
    304304            return $forum_id;
    305305        }
     
    316316
    317317        // Parent ID
    318         $parent_id = ( !empty( $_POST['parent_id'] ) && is_numeric( $_POST['parent_id'] ) ) ? (int) $_POST['parent_id'] : 0;
     318        $parent_id = ( ! empty( $_POST['parent_id'] ) && is_numeric( $_POST['parent_id'] ) ) ? (int) $_POST['parent_id'] : 0;
    319319
    320320        // Update the forum meta bidness
     
    437437
    438438        // Only proceed if GET is a forum toggle action
    439         if ( bbp_is_get_request() && !empty( $_GET['action'] ) && in_array( $_GET['action'], array( 'bbp_toggle_forum_close' ) ) && !empty( $_GET['forum_id'] ) ) {
     439        if ( bbp_is_get_request() && ! empty( $_GET['action'] ) && in_array( $_GET['action'], array( 'bbp_toggle_forum_close' ) ) && ! empty( $_GET['forum_id'] ) ) {
    440440            $action    = $_GET['action'];            // What action is taking place?
    441441            $forum_id  = (int) $_GET['forum_id'];    // What's the forum id?
     
    505505
    506506        // Only proceed if GET is a forum toggle action
    507         if ( bbp_is_get_request() && !empty( $_GET['bbp_forum_toggle_notice'] ) && in_array( $_GET['bbp_forum_toggle_notice'], array( 'opened', 'closed' ) ) && !empty( $_GET['forum_id'] ) ) {
     507        if ( bbp_is_get_request() && ! empty( $_GET['bbp_forum_toggle_notice'] ) && in_array( $_GET['bbp_forum_toggle_notice'], array( 'opened', 'closed' ) ) && ! empty( $_GET['forum_id'] ) ) {
    508508            $notice     = $_GET['bbp_forum_toggle_notice'];         // Which notice?
    509509            $forum_id   = (int) $_GET['forum_id'];                  // What's the forum id?
    510             $is_failure = !empty( $_GET['failed'] ) ? true : false; // Was that a failure?
     510            $is_failure = ! empty( $_GET['failed'] ) ? true : false; // Was that a failure?
    511511
    512512            // Bail if no forum_id or notice
     
    621621            case 'bbp_forum_freshness' :
    622622                $last_active = bbp_get_forum_last_active_time( $forum_id, false );
    623                 if ( !empty( $last_active ) ) {
     623                if ( ! empty( $last_active ) ) {
    624624                    echo esc_html( $last_active );
    625625                } else {
Note: See TracChangeset for help on using the changeset viewer.