X-Git-Url: https://git.nubati.net/cgi-bin/gitweb.cgi?p=phpfspot.git;a=blobdiff_plain;f=rpc.php;h=4ffae5f5fbddd3cc58884f25c3136e8abcd809e2;hp=8c72e0f01e1185fabd65a0405eba7eb8f62e30d5;hb=d017dda4269c5122cd522218357a11fcb4880a5d;hpb=de91ca834564f13a8a059f320c469c08309e5e6c;ds=sidebyside diff --git a/rpc.php b/rpc.php index 8c72e0f..4ffae5f 100644 --- a/rpc.php +++ b/rpc.php @@ -107,8 +107,9 @@ class PHPFSPOT_RPC { break; case 'get_calendar_matrix': - if(is_numeric($_GET['year']) && is_numeric($_GET['month']) && - is_numeric($_GET['day'])) { + if((is_numeric($_GET['year']) || $_GET['year'] == "") && + (is_numeric($_GET['month']) || $_GET['month'] == "") && + (is_numeric($_GET['day']) || $_GET['month'] == "")) { $fspot->get_calendar_matrix($_GET['year'], $_GET['month'], $_GET['day']); } break;