session->userdata('user_date_format')) { // If Logged in and session exists $custom_date_format = $this->session->userdata('user_date_format'); } else { // Get Default date format from /config/wavelog.php $custom_date_format = $this->config->item('qso_date_format'); } ?> ' . __("Nothing found!") . '
'; } ?> # ' . __("Callsign") . ' ' . __("#QSOs") . ' ' . __("Show QSOs") . ' '; $activators = array(); foreach ($activators_array as $line) { $call = $line->call; $count = $line->count; array_push($activators, array($count, $call)); } arsort($activators); foreach ($activators as $line) { echo ' ' . $i++ . ' ' . $line[1] . ' ' . $line[0] . ' '; } echo ''; }