Changeset 1687
- Timestamp:
- 08/24/2009 08:25:50 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 13 edited
- 1 moved
-
bp-activity.php (modified) (1 diff)
-
bp-blogs.php (modified) (1 diff)
-
bp-core.php (modified) (2 diffs)
-
bp-core/bp-core-cssjs.php (modified) (2 diffs)
-
bp-core/bp-core-settings.php (modified) (2 diffs)
-
bp-core/images (added)
-
bp-core/images/mystery-man.jpg (moved) (moved from trunk/bp-core/deprecated/images/mystery-man.jpg)
-
bp-friends.php (modified) (1 diff)
-
bp-groups.php (modified) (2 diffs)
-
bp-groups/bp-groups-templatetags.php (modified) (1 diff)
-
bp-messages.php (modified) (1 diff)
-
bp-status.php (modified) (1 diff)
-
bp-themes/bp-default/_inc/css/screen.css (modified) (2 diffs)
-
bp-themes/bp-default/_inc/images/ajax-loader.gif (modified) (previous)
-
bp-xprofile.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-activity.php
r1643 r1687 1 1 <?php 2 2 3 define ( 'BP_ACTIVITY_DB_VERSION', '17 16' );3 define ( 'BP_ACTIVITY_DB_VERSION', '1700' ); 4 4 5 5 /* Define the slug for the component */ -
trunk/bp-blogs.php
r1673 r1687 1 1 <?php 2 2 3 define ( 'BP_BLOGS_DB_VERSION', '1 300' );3 define ( 'BP_BLOGS_DB_VERSION', '1700' ); 4 4 5 5 /* Define the slug for the component */ -
trunk/bp-core.php
r1655 r1687 2 2 3 3 /* Define the current version number for checking if DB tables are up to date. */ 4 define( 'BP_CORE_DB_VERSION', '1 400' );4 define( 'BP_CORE_DB_VERSION', '1700' ); 5 5 6 6 /* Define the path and url of the BuddyPress plugins directory */ … … 134 134 $bp->bp_options_avatar = ''; 135 135 136 /* Fetches the default Gravatar image to use if the user has no avatar or gravatar */ 137 $bp->grav_default = get_site_option( 'user-avatar-default' ); 136 /* Fetches the default Gravatar image to use if the user/group/blog has no avatar or gravatar */ 137 $bp->grav_default->user = apply_filters( 'bp_user_gravatar_default', get_site_option( 'user-avatar-default' ) ); 138 $bp->grav_default->group = apply_filters( 'bp_group_gravatar_default', 'identicon' ); 139 $bp->grav_default->blog = apply_filters( 'bp_blog_gravatar_default', 'identicon' ); 138 140 139 141 /* Fetch the full name for the logged in and current user */ -
trunk/bp-core/bp-core-cssjs.php
r1678 r1687 32 32 33 33 /** 34 * bp_core_add_admin_bar_ css()34 * bp_core_add_admin_bar_js() 35 35 * 36 36 * Add the minor JS needed for the admin bar. … … 43 43 } 44 44 add_action( 'admin_menu', 'bp_core_add_admin_bar_js' ); 45 add_action( ' template_redirect', 'bp_core_add_admin_bar_js' );45 add_action( 'wp', 'bp_core_add_admin_bar_js' ); 46 46 47 47 /** -
trunk/bp-core/bp-core-settings.php
r1655 r1687 80 80 81 81 <label for="pass1"><?php _e( 'Change Password <span>(leave blank for no change)</span>', 'buddypress' ) ?></label> 82 < p><input type="password" name="pass1" id="pass1" size="16" value="" class="settings-input small" /> <?php _e( 'New Password', 'buddypress' ) ?></p>82 <input type="password" name="pass1" id="pass1" size="16" value="" class="settings-input small" /> <?php _e( 'New Password', 'buddypress' ) ?> 83 83 <input type="password" name="pass2" id="pass2" size="16" value="" class="settings-input small" /> <?php _e( 'Repeat New Password', 'buddypress' ) ?> 84 84 85 <p ><input type="submit" name="submit" value="<?php _e( 'Save Changes', 'buddypress' ) ?>" id="submit" class="auto"/></p>85 <p class="submit"><input type="submit" name="submit" value="<?php _e( 'Save Changes', 'buddypress' ) ?>" id="submit" class="auto"/></p> 86 86 <?php wp_nonce_field('bp_settings_general') ?> 87 87 </form> … … 96 96 $bp_settings_updated = false; 97 97 98 if ( $_POST['submit'] && check_admin_referer('bp_settings_notifications') ) {98 if ( $_POST['submit'] && check_admin_referer('bp_settings_notifications') ) { 99 99 if ( $_POST['notifications'] ) { 100 100 foreach ( $_POST['notifications'] as $key => $value ) { -
trunk/bp-friends.php
r1636 r1687 1 1 <?php 2 2 3 define ( 'BP_FRIENDS_DB_VERSION', '1 300' );3 define ( 'BP_FRIENDS_DB_VERSION', '1700' ); 4 4 5 5 /* Define the slug for the component */ -
trunk/bp-groups.php
r1672 r1687 1 1 <?php 2 2 3 define ( 'BP_GROUPS_DB_VERSION', '1 300' );3 define ( 'BP_GROUPS_DB_VERSION', '1700' ); 4 4 5 5 /* Define the slug for the component */ … … 32 32 enable_wire tinyint(1) NOT NULL DEFAULT '1', 33 33 enable_forum tinyint(1) NOT NULL DEFAULT '1', 34 date_created datetime NOT NULL, 35 avatar_thumb varchar(250) NOT NULL, 36 avatar_full varchar(250) NOT NULL, 34 date_created datetime NOT NULL 37 35 KEY creator_id (creator_id), 38 36 KEY status (status) -
trunk/bp-groups/bp-groups-templatetags.php
r1655 r1687 407 407 408 408 /* Fetch the avatar from the folder, if not provide backwards compat. */ 409 if ( !$avatar = bp_core_fetch_avatar( array( 'item_id' => $groups_template->group->id, 'object' => 'group', 'type' => $type, 'avatar_dir' => 'group-avatars', 'alt' => $alt, ' id' => $id, 'class' => $class ) ) )409 if ( !$avatar = bp_core_fetch_avatar( array( 'item_id' => $groups_template->group->id, 'object' => 'group', 'type' => $type, 'avatar_dir' => 'group-avatars', 'alt' => $alt, 'css_id' => $id, 'class' => $class ) ) ) 410 410 $avatar = '<img src="' . attribute_escape( $groups_template->group->avatar_thumb ) . '" class="avatar" alt="' . attribute_escape( $groups_template->group->name ) . '" />'; 411 411 -
trunk/bp-messages.php
r1655 r1687 1 1 <?php 2 2 3 define ( 'BP_MESSAGES_DB_VERSION', '1 300' );3 define ( 'BP_MESSAGES_DB_VERSION', '1700' ); 4 4 5 5 /* Define the slug for the component */ -
trunk/bp-status.php
r1655 r1687 1 1 <?php 2 define ( 'BP_STATUS_IS_INSTALLED', 1 );3 4 2 if ( !defined( 'BP_STATUS_SLUG' ) ) 5 3 define ( 'BP_STATUS_SLUG', 'status' ); -
trunk/bp-themes/bp-default/_inc/css/screen.css
r1684 r1687 31 31 } 32 32 33 .ajax-loader { 34 background: url( ../images/ajax-loader.gif ) center left no-repeat !important; 35 padding: 8px; 36 display: none; 37 } 33 38 34 39 /*** Search / Login Bar ************************************************/ … … 148 153 padding: 8px 0 0 0; 149 154 position: relative; 150 z-index: 9999;155 z-index: 2; 151 156 margin-left: 275px; 152 157 } -
trunk/bp-xprofile.php
r1681 r1687 1 1 <?php 2 3 define ( 'BP_XPROFILE_DB_VERSION', '1300' ); 2 define ( 'BP_XPROFILE_DB_VERSION', '1700' ); 4 3 5 4 /* Define the slug for the component */
Note: See TracChangeset
for help on using the changeset viewer.