Changeset 4262
- Timestamp:
- 10/20/2012 08:02:39 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 1 edited
- 3 moved
-
bbpress.php (modified) (1 diff)
-
includes (moved) (moved from trunk/bbp-includes)
-
languages (moved) (moved from trunk/bbp-languages)
-
templates (moved) (moved from trunk/bbp-themes)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bbpress.php
r4253 r4262 193 193 194 194 // Themes 195 $this->themes_dir = apply_filters( 'bbp_themes_dir', trailingslashit( $this->plugin_dir . ' bbp-themes' ) );196 $this->themes_url = apply_filters( 'bbp_themes_url', trailingslashit( $this->plugin_url . ' bbp-themes' ) );195 $this->themes_dir = apply_filters( 'bbp_themes_dir', trailingslashit( $this->plugin_dir . 'templates' ) ); 196 $this->themes_url = apply_filters( 'bbp_themes_url', trailingslashit( $this->plugin_url . 'templates' ) ); 197 197 198 198 // Languages 199 $this->lang_dir = apply_filters( 'bbp_lang_dir', trailingslashit( $this->plugin_dir . ' bbp-languages' ) );199 $this->lang_dir = apply_filters( 'bbp_lang_dir', trailingslashit( $this->plugin_dir . 'languages' ) ); 200 200 201 201 // Includes 202 $this->includes_dir = apply_filters( 'bbp_includes_dir', trailingslashit( $this->plugin_dir . ' bbp-includes' ) );203 $this->includes_url = apply_filters( 'bbp_includes_url', trailingslashit( $this->plugin_url . ' bbp-includes' ) );202 $this->includes_dir = apply_filters( 'bbp_includes_dir', trailingslashit( $this->plugin_dir . 'includes' ) ); 203 $this->includes_url = apply_filters( 'bbp_includes_url', trailingslashit( $this->plugin_url . 'includes' ) ); 204 204 205 205 /** Identifiers *******************************************************/
Note: See TracChangeset
for help on using the changeset viewer.