Skip to:
Content

bbPress.org

Changeset 4262


Ignore:
Timestamp:
10/20/2012 08:02:39 PM (14 years ago)
Author:
johnjamesjacoby
Message:

Paths:

  • Remove "bbp-" prefixes on root level directories.
  • Rename 'themes' to 'templates' to discourage clever people from putting "themes" in there.
  • Update paths and URLs in bbpress.php.
Location:
trunk
Files:
1 edited
3 moved

Legend:

Unmodified
Added
Removed
  • trunk/bbpress.php

    r4253 r4262  
    193193
    194194                // 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' ) );
    197197
    198198                // 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' ) );
    200200
    201201                // 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' ) );
    204204               
    205205                /** Identifiers *******************************************************/
Note: See TracChangeset for help on using the changeset viewer.