From e66b9bb985d4b83c35dd00cea2f4efccbf91dfad Mon Sep 17 00:00:00 2001 From: Nicolas Boisselier Date: Mon, 28 Mar 2022 09:21:51 +0100 Subject: [PATCH] lib/php/db/table.php --- etc/nginx/php-handler-7-fpm.conf | 2 +- lib/php/db/table.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/nginx/php-handler-7-fpm.conf b/etc/nginx/php-handler-7-fpm.conf index 062a01b1..81d02246 100644 --- a/etc/nginx/php-handler-7-fpm.conf +++ b/etc/nginx/php-handler-7-fpm.conf @@ -1 +1 @@ -upstream php-handler { server unix:///var/run/php/php7.0-fpm.sock; } +upstream php-handler { server unix:///var/run/php/php7.3-fpm.sock; } diff --git a/lib/php/db/table.php b/lib/php/db/table.php index 76aa1587..014f66c4 100644 --- a/lib/php/db/table.php +++ b/lib/php/db/table.php @@ -1886,7 +1886,7 @@ Class Table extends nb { .' WHERE ' . join(' AND ',$this->ar_map('"$a=:key_$a"',$keys)) ; $info = [ 'sql' => $sql ] + $info; - $this->file_write('/tmp/nb',print_r($info,true)); + # NB 28.03.22 $this->file_write('/tmp/nb',print_r($info,true)); if ($bindParam and !($query = $this->db()->conn->prepare($sql))) { $this->err('PDO::errorInfo(): ' .join(' ', $this->db()->conn->errorInfo()) .NB_EOL); -- 2.47.3