Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
02/01/2016 06:53:30 PM (9 years ago)
Author:
djpaul
Message:

Fix indentation on lines beginning with a space character followed by a tab.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/classes/class-bp-groups-group.php

    r10454 r10487  
    280280        $this->creator_id   = apply_filters( 'groups_group_creator_id_before_save',   $this->creator_id,   $this->id );
    281281        $this->name         = apply_filters( 'groups_group_name_before_save',         $this->name,         $this->id );
    282         $this->slug         = apply_filters( 'groups_group_slug_before_save',         $this->slug,         $this->id );
     282        $this->slug         = apply_filters( 'groups_group_slug_before_save',         $this->slug,         $this->id );
    283283        $this->description  = apply_filters( 'groups_group_description_before_save',  $this->description,  $this->id );
    284         $this->status       = apply_filters( 'groups_group_status_before_save',       $this->status,       $this->id );
     284        $this->status       = apply_filters( 'groups_group_status_before_save',       $this->status,       $this->id );
    285285        $this->enable_forum = apply_filters( 'groups_group_enable_forum_before_save', $this->enable_forum, $this->id );
    286286        $this->date_created = apply_filters( 'groups_group_date_created_before_save', $this->date_created, $this->id );
Note: See TracChangeset for help on using the changeset viewer.