1 頁 (共 1 頁)

[公告] Calendar bugged

發表於 : 2008年 12月 29日, 04:55
Crlight
***08/12/29***

‧A serious bug occurs on the calendar mod since yesterday. I've already reported to the author and try to fix it with myself now. If you want to check out the correct events, please choose 2008 on the menu, thx.
‧行事曆出現多跳一年的嚴重 bug,目前已回報原作者處理並自行研究原始碼中,正確的行程請自己按一下 2008 謝謝。

Re: [公告] Calendar bugged

發表於 : 2008年 12月 30日, 00:14
Crlight
***08/12/29*** 修復

‧Restored this issue.
‧問題修復,有使用 Calendar mod 的友站可以按照下面步驟修復此問題:

#
#-----[ OPEN ]-----
#
includes/functions_calendar.php

#
#-----[ FIND ]-----
#

代碼: 選擇全部

   if( $date['year'] == "" )
   {
      if (phpversion() < 5.1)
      {
         $date['year']   =   gmdate('Y', $temp_now_time);
      }
      else
      {
         $date['year'] = gmdate("o", $temp_now_time);

      }
   }


#
#-----[ REPLACE WITH ]-----
#

代碼: 選擇全部

   if( $date['year'] == "" )
   {
      $date['year'] = gmdate('Y', $temp_now_time);
   }


#
#-----[ SAVE & CLOSE ]-----
#