***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 謝謝。
[公告] Calendar bugged
- Crlight
- Guild Leader

- 文章: 7009
- 註冊時間: 2005年 6月 27日, 23:18
- 主角色: Ezigh
- 來自: 天地日月
- Contact:
- Crlight
- Guild Leader

- 文章: 7009
- 註冊時間: 2005年 6月 27日, 23:18
- 主角色: Ezigh
- 來自: 天地日月
- Contact:
Re: [公告] Calendar bugged
***08/12/29*** 修復
‧Restored this issue.
‧問題修復,有使用 Calendar mod 的友站可以按照下面步驟修復此問題:
#
#-----[ OPEN ]-----
#
includes/functions_calendar.php
#
#-----[ FIND ]-----
#
#
#-----[ REPLACE WITH ]-----
#
#
#-----[ SAVE & CLOSE ]-----
#
‧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 ]-----
#