We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bf2cc1 commit a35735aCopy full SHA for a35735a
1 file changed
Zebra_Database.php
@@ -10,7 +10,7 @@
10
* Read more {@link https://github.com/stefangabos/Zebra_Database here}
11
*
12
* @author Stefan Gabos <contact@stefangabos.ro>
13
- * @version 2.12.0 (last revision: January 25, 2025)
+ * @version 2.12.1 (last revision: February 07, 2025)
14
* @copyright © 2006 - 2025 Stefan Gabos
15
* @license https://www.gnu.org/licenses/lgpl-3.0.txt GNU LESSER GENERAL PUBLIC LICENSE
16
* @package Zebra_Database
@@ -5325,7 +5325,8 @@ private function _escape($entries) {
5325
*/
5326
private function _is_mysql_function($value) {
5327
5328
- $value = trim($value);
+ // trim strings
5329
+ if (is_string($value)) $value = trim($value);
5330
5331
// returns TRUE if
5332
return (
0 commit comments