Changeset 1829
- Timestamp:
- 09/08/2009 09:20:41 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-core/bp-core-signup.php
r1714 r1829 191 191 192 192 $path = get_blog_option( BP_ROOT_BLOG, 'upload_path' ); 193 $newdir = path_join( ABSPATH, $path );193 $newdir = WP_CONTENT_DIR . str_replace( 'wp-content', '', $path ); 194 194 $newdir .= '/avatars/signups/' . $bp->signup->avatar_dir; 195 195 -
trunk/bp-groups.php
r1826 r1829 1933 1933 1934 1934 $path = get_blog_option( BP_ROOT_BLOG, 'upload_path' ); 1935 $newdir = path_join( ABSPATH, $path );1935 $newdir = WP_CONTENT_DIR . str_replace( 'wp-content', '', $path ); 1936 1936 $newdir .= '/group-avatars/' . $group_id; 1937 1937 -
trunk/bp-xprofile.php
r1813 r1829 1025 1025 1026 1026 $path = get_blog_option( BP_ROOT_BLOG, 'upload_path' ); 1027 $newdir = path_join( ABSPATH, $path );1027 $newdir = WP_CONTENT_DIR . str_replace( 'wp-content', '', $path ); 1028 1028 $newdir .= '/avatars/' . $user_id; 1029 1029
Note: See TracChangeset
for help on using the changeset viewer.