修改 statisitcs 模組, 管理者點閱不列入統計

在 statistics.module 中的函數statistics_exit() 在宣告後(第55行後):

//Add the codes to exclude the administor and editor from statistics
  $paths = array('admin', 'user', 'captcha');
if ($user->uid==1 || $user->uid==2 || in_array(arg(0), $paths)) return;


排除管理者與編輯者的點閱納入統計