From 8fac62fc684e3cc7b233353c13c4ef824985c708 Mon Sep 17 00:00:00 2001 From: Victor Boctor Date: Tue, 5 Sep 2023 23:01:30 -0700 Subject: [PATCH] Remove extra parameter --- api/rest/restcore/config_rest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/rest/restcore/config_rest.php b/api/rest/restcore/config_rest.php index 3c0cc42ef3..4cb2db0edf 100644 --- a/api/rest/restcore/config_rest.php +++ b/api/rest/restcore/config_rest.php @@ -48,7 +48,7 @@ function rest_config_get( \Slim\Http\Request $p_request, \Slim\Http\Response $p_ ); $t_command = new ConfigsGetCommand( $t_data ); - $t_result = $t_command->execute( $t_data ); + $t_result = $t_command->execute(); return $p_response->withStatus( HTTP_STATUS_SUCCESS )->withJson( $t_result ); }