From: Nicolas Boisselier Date: Mon, 23 Oct 2017 16:02:29 +0000 (+0100) Subject: lib/php/db/table.php X-Git-Url: https://git.nbdom.net/?a=commitdiff_plain;h=203a37da83682d1b52c74f56ba312792f7fab9bd;p=nb.git lib/php/db/table.php --- diff --git a/lib/php/db/table.php b/lib/php/db/table.php index 7a9ea7ab..96ac6017 100644 --- a/lib/php/db/table.php +++ b/lib/php/db/table.php @@ -566,7 +566,7 @@ Class Table extends nb { $flat = []; foreach ($url_params as $k=>$v) { if ((string)$v === '') continue; - $flat[] = $k.'='.urlencode($v); + $flat[] = $k . '=' . urlencode($v); } $form_action .= ( strpos('?',$form_action) === false ? '&' : '' ) . join('&',$flat); #debug($form_action);