From 914113d376d378213dd52ff563f59757f44bb4ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anton=20Luka=20=C5=A0ijanec?= Date: Mon, 10 Feb 2020 17:15:57 +0100 Subject: fixed endpoint to support up to 7 parameters --- endpoint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'endpoint.php') diff --git a/endpoint.php b/endpoint.php index 7bfe495..d55a917 100644 --- a/endpoint.php +++ b/endpoint.php @@ -6,5 +6,5 @@ $g = new gimsisextClient(); $g->setusername($_REQUEST['u']); $g->setpassword($_REQUEST['p']); - echo json_encode($g->{$_REQUEST['m']}($_REQUEST['a'], $_REQUEST['b'], $_REQUEST['c'], $_REQUEST['d'], $_REQUEST['e'])); + echo json_encode($g->{$_REQUEST['m']}($_REQUEST['a'], $_REQUEST['b'], $_REQUEST['c'], $_REQUEST['d'], $_REQUEST['e'], $_REQUEST["f"], $_REQUEST["g"])); ?> -- cgit v1.2.3