Changeset 6509
- Timestamp:
- 06/09/2017 03:15:52 PM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bbpress.php
r6339 r6509 18 18 * Author: The bbPress Contributors 19 19 * Author URI: https://bbpress.org 20 * Version: 2.6- beta-320 * Version: 2.6-rc-3 21 21 * Text Domain: bbpress 22 22 * Domain Path: /languages/ … … 36 36 37 37 // Include bbPress 38 include ( $bbp_loader );38 include $bbp_loader; 39 39 40 40 // Unset the loader, since it's loaded in global scope -
trunk/src/bbpress.php
r6508 r6509 18 18 * Author: The bbPress Contributors 19 19 * Author URI: https://bbpress.org 20 * Version: 2.6- beta-320 * Version: 2.6-rc-3 21 21 * Text Domain: bbpress 22 22 * Domain Path: /languages/ … … 205 205 /** Versions **********************************************************/ 206 206 207 $this->version = '2.6- beta-6338';207 $this->version = '2.6-rc-6509'; 208 208 $this->db_version = '261'; 209 209 210 210 /** Paths *************************************************************/ 211 211 212 // Base name213 $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 ) ) ); 216 216 217 217 // 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 ) ); 220 220 221 221 // Includes
Note: See TracChangeset
for help on using the changeset viewer.