I got it... it's based on the registration date of the first user id in the database (normally user #1) but I did an import from phpBB2 so admin is user 2. In /statistic/side/forum.php find AROUND LINE 48;
PHP Code:
$the_begin = $DB_site->query_first("
SELECT username AS name, joindate AS installdate
FROM " . TABLE_PREFIX . "user
WHERE userid = 1
");
Change "WHERE userid = 1" to to match the first user id # actually listed in your database.