From 16855fdc34715c6b70fadd1ed6dd165f8bf6e8f3 Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Tue, 14 Nov 2017 20:24:42 +0000 Subject: [PATCH] lib/php/db/table.php --- lib/php/db/table.php | 2 +- www/dbq/html/default.css | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/php/db/table.php b/lib/php/db/table.php index 165e5510..d277110d 100644 --- a/lib/php/db/table.php +++ b/lib/php/db/table.php @@ -569,7 +569,7 @@ Class Table extends nb { $flat[] = $k . '=' . urlencode($v); } if (NB_P_GET) { - $form_action .= ( strpos('?',$form_action) === false ? '' : '?' ) . join('&',$flat); + $form_action .= ( strpos('?',$form_action) === false ? '?' : '' ) . join('&',$flat); $form_hidden = ''; } } diff --git a/www/dbq/html/default.css b/www/dbq/html/default.css index bbd509ce..7db2e2ff 100644 --- a/www/dbq/html/default.css +++ b/www/dbq/html/default.css @@ -209,6 +209,11 @@ ul.row li label, div.row div label { margin-right: auto; } +div.buttons { + text-align: center; + margin-top: 0.5em; +} + form.menu { padding: 0.5em; background-color: #FAFAFA; -- 2.47.3