- Posts: 31
- Thank you received: 2
PDO warning
9 months 2 weeks ago #369664
by Denitz
PDO warning was created by Denitz
-- HikaShop version -- : 6.1.1
-- Joomla version -- : 5.4.1
-- PHP version -- : 8.3
-- Error-message(debug-mod must be tuned on) -- : ( ! ) Deprecated: PDO::quote(): Passing null to parameter #1 ($string) of type string is deprecated in \libraries\vendor\joomla\database\src\Mysql\MysqlDriver.php on line 711
Once I create an order in frontend, I see this error:
( ! ) Deprecated: PDO::quote(): Passing null to parameter #1 ($string) of type string is deprecated in \libraries\vendor\joomla\database\src\Mysql\MysqlDriver.php on line 711
The problem is that hikashopOrder_productClass->save() is called,
Next, it quotes all data and around line 122 the data can be NULL. NULL can't be passed to $db->quote()
This code is better, if you don't save NULLs but empty strings:
-- Joomla version -- : 5.4.1
-- PHP version -- : 8.3
-- Error-message(debug-mod must be tuned on) -- : ( ! ) Deprecated: PDO::quote(): Passing null to parameter #1 ($string) of type string is deprecated in \libraries\vendor\joomla\database\src\Mysql\MysqlDriver.php on line 711
Once I create an order in frontend, I see this error:
( ! ) Deprecated: PDO::quote(): Passing null to parameter #1 ($string) of type string is deprecated in \libraries\vendor\joomla\database\src\Mysql\MysqlDriver.php on line 711
The problem is that hikashopOrder_productClass->save() is called,
Next, it quotes all data and around line 122 the data can be NULL. NULL can't be passed to $db->quote()
Code:
$this->database->Quote(@$product->order_product_shipping_params),
This code is better, if you don't save NULLs but empty strings:
Code:
$this->database->Quote($product->order_product_shipping_params ?? ''),
Please Log in or Create an account to join the conversation.
9 months 2 weeks ago #369665
by nicolas
Replied by nicolas on topic PDO warning
Hi,
Thank you for your feedback. I've made a patch for it on our end for the next version of HikaShop.
Thank you for your feedback. I've made a patch for it on our end for the next version of HikaShop.
Please Log in or Create an account to join the conversation.
Time to create page: 0.142 seconds