Skip to content

Commit 7336058

Browse files
committed
Fixed bug
1 parent 3d3c45f commit 7336058

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Zebra_Database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2099,7 +2099,7 @@ public function implode($items) {
20992099
$result = '';
21002100

21012101
// iterate through the array's items and "glue" items together
2102-
foreach ($items as $item) $result .= ($result != '' ? ',' : '') . '\'' . $this->escape($items) . '\'';
2102+
foreach ($items as $item) $result .= ($result != '' ? ',' : '') . '\'' . $this->escape($item) . '\'';
21032103

21042104
return $result;
21052105

0 commit comments

Comments
 (0)