感覺這 X2.0 不能檢視使用者的本月線上時間很蛋疼,排行榜只能看線上時間比較多的那幾位會員的時間而無法檢視更多使用者的本月線上時間,所以修改了下,把本月線上時間顯示在個人資料那裡

找到檔案 source/include/space/space_profile.php

找到

  1. if($space['videophotostatus'] > 0 && $_G['uid'] != $space['uid'] && !ckvideophoto($space, 1)) {
  2.         $showvideophoto = false;
  3. }

新增如下程式碼

  1. //{{{本月線上
  2. $space['olmonth'] = DB::result_first("SELECT thismonth FROM ".DB::table('common_onlinetime')." WHERE uid='$space[uid]'");
  3. $space['olmonth_hours'] = $space['olmonth'] ? intval($space['olmonth'] /60) : "";
  4. //本月線上}}}

然後修改 template/default/home/space_profile.htm

找到

  1. <!--{if
    $space[oltime]}--><li><em>{lang
    online_time}</em>$space[oltime] {lang
    hours}</li><!--{/if}-->

在下面新增

  1. <!--{if
    $space[olmonth_hours]}--><li><em> 本月線上</em>
    {$space[olmonth_hours]} {lang hours}</li><!--{/if}-->

完工。