Skip to:
Content

bbPress.org

Changeset 6509


Ignore:
Timestamp:
06/09/2017 03:15:52 PM (8 years ago)
Author:
johnjamesjacoby
Message:

Bump trunk to 2.6 Release Candidate 1! 🐝

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bbpress.php

    r6339 r6509  
    1818 * Author:      The bbPress Contributors
    1919 * Author URI:  https://bbpress.org
    20  * Version:     2.6-beta-3
     20 * Version:     2.6-rc-3
    2121 * Text Domain: bbpress
    2222 * Domain Path: /languages/
     
    3636
    3737// Include bbPress
    38 include( $bbp_loader );
     38include $bbp_loader;
    3939
    4040// Unset the loader, since it's loaded in global scope
  • trunk/src/bbpress.php

    r6508 r6509  
    1818 * Author:      The bbPress Contributors
    1919 * Author URI:  https://bbpress.org
    20  * Version:     2.6-beta-3
     20 * Version:     2.6-rc-3
    2121 * Text Domain: bbpress
    2222 * Domain Path: /languages/
     
    205205        /** Versions **********************************************************/
    206206
    207         $this->version    = '2.6-beta-6338';
     207        $this->version    = '2.6-rc-6509';
    208208        $this->db_version = '261';
    209209
    210210        /** Paths *************************************************************/
    211211
    212         // Base name
    213         $this->file       = __FILE__;
    214         $this->basename   = apply_filters( 'bbp_plugin_basename', str_replace( array( 'build/', 'src/' ), '', plugin_basename( $this->file ) ) );
    215         $this->basepath   = apply_filters( 'bbp_plugin_basepath', trailingslashit( dirname( $this->basename ) ) );
     212        // File & base
     213        $this->file         = __FILE__;
     214        $this->basename     = apply_filters( 'bbp_plugin_basename', str_replace( array( 'build/', 'src/' ), '', plugin_basename( $this->file ) ) );
     215        $this->basepath     = apply_filters( 'bbp_plugin_basepath', trailingslashit( dirname( $this->basename ) ) );
    216216
    217217        // Path and URL
    218         $this->plugin_dir = apply_filters( 'bbp_plugin_dir_path', plugin_dir_path( $this->file ) );
    219         $this->plugin_url = apply_filters( 'bbp_plugin_dir_url',  plugin_dir_url ( $this->file ) );
     218        $this->plugin_dir   = apply_filters( 'bbp_plugin_dir_path', plugin_dir_path( $this->file ) );
     219        $this->plugin_url   = apply_filters( 'bbp_plugin_dir_url',  plugin_dir_url ( $this->file ) );
    220220
    221221        // Includes
Note: See TracChangeset for help on using the changeset viewer.