And another notice removed
This commit is contained in:
parent
6add589c3f
commit
dc30daf3a2
1 changed files with 3 additions and 3 deletions
|
@ -46,7 +46,7 @@ function cal_init(App $a)
|
||||||
|
|
||||||
// if it's a json request abort here becaus we don't
|
// if it's a json request abort here becaus we don't
|
||||||
// need the widget data
|
// need the widget data
|
||||||
if ($a->argv[2] === 'json') {
|
if (!empty($a->argv[2]) && ($a->argv[2] === 'json')) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -194,7 +194,7 @@ function cal_content(App $a)
|
||||||
$finish = sprintf('%d-%d-%d %d:%d:%d', $y, $m, $dim, 23, 59, 59);
|
$finish = sprintf('%d-%d-%d %d:%d:%d', $y, $m, $dim, 23, 59, 59);
|
||||||
|
|
||||||
|
|
||||||
if ($a->argv[2] === 'json') {
|
if (!empty($a->argv[2]) && ($a->argv[2] === 'json')) {
|
||||||
if (x($_GET, 'start')) {
|
if (x($_GET, 'start')) {
|
||||||
$start = $_GET['start'];
|
$start = $_GET['start'];
|
||||||
}
|
}
|
||||||
|
@ -242,7 +242,7 @@ function cal_content(App $a)
|
||||||
// transform the event in a usable array
|
// transform the event in a usable array
|
||||||
$events = Event::prepareListForTemplate($r);
|
$events = Event::prepareListForTemplate($r);
|
||||||
|
|
||||||
if ($a->argv[2] === 'json') {
|
if (!empty($a->argv[2]) && ($a->argv[2] === 'json')) {
|
||||||
echo json_encode($events);
|
echo json_encode($events);
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue