Ticket #585: 585.patch
| File 585.patch, 765 bytes (added by , 12 years ago) |
|---|
-
addons/shortcodes.php
149 149 if ( $privacy == 'private' ) 150 150 continue; 151 151 152 // Skip attendees marked as unconfirmed. 153 $confirmed = get_post_meta( $attendee_id, 'tix_username', true ); 154 if ( $confirmed == CampTix_Require_Login::UNCONFIRMED_USERNAME ) { 155 continue; 156 } 157 152 158 echo '<li>'; 153 159 154 160 $first = get_post_meta( $attendee_id, 'tix_first_name', true ); … … 192 198 */ 193 199 function shortcode_stats( $atts ) { 194 200 global $camptix; 195 201 196 202 return isset( $atts['stat'] ) ? $camptix->get_stats( $atts['stat'] ) : ''; 197 203 } 198 204