From 3c8d0dec8cdb05cd252300ec8f014738f6f3caef Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Mon, 13 Feb 2023 12:54:31 +0100 Subject: [PATCH] wip #5725 @0.25 --- app/tools.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/tools.php b/app/tools.php index 5badbad..6f34a65 100644 --- a/app/tools.php +++ b/app/tools.php @@ -7,7 +7,7 @@ require_once __DIR__ . "/vendor/autoload.php"; $f = $_POST['function']; if (is_callable([Tools::class, $f])) { $res = Tools::$f($_POST); - error_log($f . ' : ' . print_r($_POST) . ' -> ' . $res); + error_log($f . ' : ' . print_r($_POST, true) . ' -> ' . $res); die($res); } error_log('unavailable function ' . $f); -- 2.39.5