Changeset 1655 for trunk/bp-groups/bp-groups-templatetags.php
- Timestamp:
- 08/13/2009 01:24:21 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/bp-groups/bp-groups-templatetags.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bp-groups/bp-groups-templatetags.php
r1636 r1655 749 749 ?> 750 750 <form action="<?php echo $action ?>" id="group-search-form" method="post"> 751 <label for="<?php echo $name ?>" id="<?php echo $name ?>-label"><?php echo $label ?> < img id="ajax-loader" src="<?php echo $bp->groups->image_base ?>/ajax-loader.gif" height="7" alt="<?php _e( 'Loading', 'buddypress' ) ?>" style="display: none;" /></label>751 <label for="<?php echo $name ?>" id="<?php echo $name ?>-label"><?php echo $label ?> <span class="ajax-loader"></span></label> 752 752 <input type="search" name="<?php echo $name ?>" id="<?php echo $name ?>" value="<?php echo $value ?>"<?php echo $disabled ?> /> 753 753 … … 782 782 783 783 echo sprintf( __( 'Viewing group %d to %d (of %d groups)', 'buddypress' ), $from_num, $to_num, $groups_template->total_group_count ); ?> 784 < img id="ajax-loader-groups" src="<?php echo $bp->core->image_base ?>/ajax-loader.gif" height="7" alt="<?php _e( "Loading", "buddypress" ) ?>" style="display: none;" /><?php784 <span class="ajax-loader"></span><?php 785 785 } 786 786 … … 1217 1217 if ( !is_user_logged_in() || groups_is_user_banned( $bp->loggedin_user->id, $group->id ) ) 1218 1218 return false; 1219 1220 echo '<div class="group-button ' . $group->status . '" id="groupbutton-' . $group->id . '">'; 1219 1220 if ( !$group->status ) 1221 return false; 1222 1223 echo '<div class="generic-button group-button ' . $group->status . '" id="groupbutton-' . $group->id . '">'; 1221 1224 1222 1225 switch ( $group->status ) { … … 1964 1967 1965 1968 echo sprintf( __( 'Viewing group %d to %d (of %d groups)', 'buddypress' ), $from_num, $to_num, $site_groups_template->total_group_count ); ?> 1966 < img id="ajax-loader-groups" src="<?php echo $bp->core->image_base ?>/ajax-loader.gif" height="7" alt="<?php _e( "Loading", "buddypress" ) ?>" style="display: none;" /><?php1969 <span class="ajax-loader"></span><?php 1967 1970 } 1968 1971
Note: See TracChangeset
for help on using the changeset viewer.