I think I found the problem with the elongated bars... the calculations are not correct when you use results from number_format. I changed those to intval and it calculates correctly now:
Here is the area I changed... hope I havent missed any:
PHP Code:
//##################################################################################################
//## Auswertgung einger Top Resulte START
//##################################################################################################
$alle_beitraege = $DB_site->query_first("SELECT COUNT(*) as beitraege FROM " . TABLE_PREFIX . "post ");
$alle_beitraege = intval($alle_beitraege['beitraege']); //alle Beitr?ge
$alle_themen= $DB_site->query_first("SELECT COUNT( * ) as themen FROM " . TABLE_PREFIX . "thread ");
$alle_themen = intval($alle_themen['themen']); //alle Themen
$alle_user= $DB_site->query_first(" SELECT COUNT( * ) as benutzer FROM " . TABLE_PREFIX . "user ");
$alle_user = intval($alle_user['benutzer']); //alle Benutzer
$alle_pm= $DB_site->query_first("SELECT COUNT( * ) as pm FROM " . TABLE_PREFIX . "pm ");
$alle_pm = intval($alle_pm['pm']);