fixed repeating events Month select drop down

This commit is contained in:
skeeter 2000-12-08 02:24:49 +00:00
parent de79a3fc12
commit 12aa79761b
2 changed files with 2 additions and 1 deletions

View File

@ -322,7 +322,7 @@
$month_html = "<select name=\"rpt_month\">"; $month_html = "<select name=\"rpt_month\">";
for ($i = 1; $i <= 12; $i++) { for ($i = 1; $i <= 12; $i++) {
$m = lang($phpgw->common->show_date($cal_info->rpt_end,"F")); $m = lang(date("F",mktime(0,0,0,$i,1,2000)));
$month_html .= "<option value=\"$i\"" . ($i == intval($phpgw->common->show_date($cal_info->rpt_end,"n")) ? " selected" : "") . ">$m</option>\n"; $month_html .= "<option value=\"$i\"" . ($i == intval($phpgw->common->show_date($cal_info->rpt_end,"n")) ? " selected" : "") . ">$m</option>\n";
} }
$month_html .= "</select>"; $month_html .= "</select>";

View File

@ -4,6 +4,7 @@
- Added ability for admin to edit any calendar event. - Added ability for admin to edit any calendar event.
- Fixed entries showing improperly on wrong date. - Fixed entries showing improperly on wrong date.
- Fixed file uploads through filemanager. - Fixed file uploads through filemanager.
- Fixed repeating entries Month select box.
[0.9.7] - Fixed SQL error in tts [0.9.7] - Fixed SQL error in tts
- Fixed table locking in admin -> edit account - Fixed table locking in admin -> edit account