Files
fusionpbx/resources
Alexey Melnichuk b797775720 Fix. ODBC db backend should breaks loop only when callback returns number ~= 0
```Lua
dbh:query(sql, function(row)
  -- return 0     -- should not break loop
  -- return true  -- should not break loop
  return 1 -- should break loop
end)
```
2016-02-26 13:52:27 +03:00
..
2016-02-22 13:18:37 -07:00
2013-07-06 05:23:01 +00:00
2015-11-19 14:54:04 +00:00