1
0
mirror of https://github.com/e107inc/e107.git synced 2025-06-07 19:35:47 +02:00

Avoid a PHP8 error when update() fails.

This commit is contained in:
Cameron 2021-03-04 16:12:01 -08:00
parent e50cdc5af8
commit 06b86ee380

View File

@ -1085,7 +1085,7 @@ class e_db_pdo implements e_db
}
else
{
$this->dbError("db_Update ({$query})");
$this->dbError('db_Update ('.print_r($query, true).')');
return false;
}
}