forked from extern/egroupware
fixed repeating events Month select drop down
This commit is contained in:
parent
de79a3fc12
commit
12aa79761b
@ -322,7 +322,7 @@
|
||||
|
||||
$month_html = "<select name=\"rpt_month\">";
|
||||
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 .= "</select>";
|
||||
|
@ -4,6 +4,7 @@
|
||||
- Added ability for admin to edit any calendar event.
|
||||
- Fixed entries showing improperly on wrong date.
|
||||
- Fixed file uploads through filemanager.
|
||||
- Fixed repeating entries Month select box.
|
||||
|
||||
[0.9.7] - Fixed SQL error in tts
|
||||
- Fixed table locking in admin -> edit account
|
||||
|
Loading…
Reference in New Issue
Block a user