Quote:
Originally Posted by WetWired
Almost. Your code doesn't take into account the first visit of the day, where the data in userinfo may not be up to date yet. This code should handle that situation:
Code:
if(isset($WWU002activityPoints)){
$user['activity']=intval($WWU002activityPoints/$WWU002maxPoints*100).'%';
}else if($vbulletin->userinfo['userid']){
$user['activity']=intval($vbulletin->userinfo['wwu002activity']/$WWU002maxPoints*100).'%';
}else{//(isset($WWU002activityPoints))
$user['activity']='N/A';
}//endif(isset($WWU002activityPoints))
|
help, this doesnt work when i use $user[activity] in my template.. it just spits out "0"...... i did everything requested above.. anyone help please!