mirror of
https://github.com/dg/dibi.git
synced 2025-08-25 23:16:17 +02:00
- added fluent SQL builders support in DibiConnection and DibiTable
This commit is contained in:
@@ -214,7 +214,7 @@ final class DibiTranslator extends DibiObject
|
||||
} else {
|
||||
foreach ($value as $k => $v) {
|
||||
$pair = explode('%', $k, 2); // split into identifier & modifier
|
||||
$k = $this->delimite($pair[0]);
|
||||
$k = $this->delimite($pair[0]);
|
||||
if (isset($pair[1])) {
|
||||
$pair = explode(' ', $pair[1], 2); // split into modifier & operator
|
||||
$op = isset($pair[1]) ? $pair[1] : '=';
|
||||
|
Reference in New Issue
Block a user