From: Vincent Vanwaelscappel Date: Mon, 13 Feb 2023 11:54:31 +0000 (+0100) Subject: wip #5725 @0.25 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=3c8d0dec8cdb05cd252300ec8f014738f6f3caef;p=fluidbook_distantstorage.git wip #5725 @0.25 --- 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);