diff options
| -rwxr-xr-x | lib/Travelynx/Controller/Profile.pm | 5 | 
1 files changed, 2 insertions, 3 deletions
| diff --git a/lib/Travelynx/Controller/Profile.pm b/lib/Travelynx/Controller/Profile.pm index 182c90d..e809491 100755 --- a/lib/Travelynx/Controller/Profile.pm +++ b/lib/Travelynx/Controller/Profile.pm @@ -374,15 +374,14 @@ sub user_status {  			)  		  )  		{ -			$status->{checked_in} = 0; -			$status->{arr_name}   = undef; +			$status = {};  		}  	}  	if (    not $status->{checked_in}  		and $status->{arr_name}  		and not $user->{past_status} )  	{ -		$status->{arr_name} = undef; +		$status = {};  	}  	if ( $status->{checked_in} ) { | 
