Statistics Module Hack

I use this hack to change the order of "top referrers" in the administration section of the site. Open up your statistics.module and go search the file for the statistics_top_referrers() function.


<?php
/* CHANGED SORT ORDER
  $header = array(
    array('data' => t('Hits'), 'field' => 'hits', 'sort' => 'desc'),
    array('data' => t('Url'), 'field' => 'url'),
    array('data' => t('Last visit'), 'field' => 'last'),
  );
*/  
   
$header = array(
    array(
'data' => t('Hits'), 'field' => 'hits'),
    array(
'data' => t('Url'), 'field' => 'url'),
    array(
'data' => t('Last visit'), 'field' => 'last''sort' => 'desc'),
   );



This "hack" then saves 2 clicks as under normal circumstances this page is sorted by "hits" and then you have to click the sort link twice...

Syndicate content