Index: addons/shortcodes.php
===================================================================
--- addons/shortcodes.php	(revision 971062)
+++ addons/shortcodes.php	(working copy)
@@ -149,6 +149,12 @@
 							if ( $privacy == 'private' )
 								continue;
 
+							// Skip attendees marked as unconfirmed.
+							$confirmed = get_post_meta( $attendee_id, 'tix_username', true );
+							if ( $confirmed == CampTix_Require_Login::UNCONFIRMED_USERNAME ) {
+								continue;
+							}
+
 							echo '<li>';
 
 							$first = get_post_meta( $attendee_id, 'tix_first_name', true );
@@ -192,7 +198,7 @@
 	 */
 	function shortcode_stats( $atts ) {
 		global $camptix;
-		
+
 		return isset( $atts['stat'] ) ? $camptix->get_stats( $atts['stat'] ) : '';
 	}
 
