Accept refresh request data as POST parameters (#3244)
This commit is contained in:
parent
3afbd3eb58
commit
c90d8fa6f0
1 changed files with 3 additions and 3 deletions
|
@ -1131,9 +1131,9 @@ class calendar extends rcube_plugin
|
||||||
|
|
||||||
foreach ($this->driver->list_calendars(true) as $cal) {
|
foreach ($this->driver->list_calendars(true) as $cal) {
|
||||||
$events = $this->driver->load_events(
|
$events = $this->driver->load_events(
|
||||||
get_input_value('start', RCUBE_INPUT_GET),
|
get_input_value('start', RCUBE_INPUT_GPC),
|
||||||
get_input_value('end', RCUBE_INPUT_GET),
|
get_input_value('end', RCUBE_INPUT_GPC),
|
||||||
get_input_value('q', RCUBE_INPUT_GET),
|
get_input_value('q', RCUBE_INPUT_GPC),
|
||||||
$cal['id'],
|
$cal['id'],
|
||||||
1,
|
1,
|
||||||
$attr['last']
|
$attr['last']
|
||||||
|
|
Loading…
Add table
Reference in a new issue