db_delete handling of where_string and where_values
shytiger - July 31, 2009 - 00:20
| Project: | Helpers |
| Version: | 5.x-1.1 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Description
The current return db_query($sql, array_merge($where_string, $where_values)); is not working well.
I suggest replacing it with
return db_query($sql, $where_values);
