Changeset 17576 for trunk/wp-admin/includes/class-wp-filesystem-base.php
- Timestamp:
- 03/31/2011 01:28:36 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/class-wp-filesystem-base.php
r14810 r17576 83 83 */ 84 84 function wp_themes_dir() { 85 return $this->wp_content_dir() . '/themes'; 85 return $this->wp_content_dir() . 'themes/'; 86 } 87 /** 88 * Returns the path on the remote filesystem of WP_LANG_DIR 89 * 90 * @since 3.2 91 * @access public 92 * 93 * @return string The location of the remote path. 94 */ 95 function wp_lang_dir() { 96 return $this->find_folder(WP_LANG_DIR); 86 97 } 87 98
Note: See TracChangeset
for help on using the changeset viewer.