Home » Database » DB_QueryTool » Bug #4189
update() quote even if "raw" option is set
Details
| Submitted | 2005-04-20 15:46 UTC |
|---|---|
| From | marcin dot krzyzanowski at gmail dot com |
| Assigned | quipo |
| Status | Closed |
| Package | DB_QueryTool |
| PHP Version | 5.0.2 |
| OS | MacOSX |
| Roadmaps | (Not assigned) |
Comments
[2005-04-20 15:46 UTC] marcin dot krzyzanowski at gmail dot com
Description:
------------
QueryTool/Query.php
function update($newData)
{
$query = array();
// do only set the 'where' part in $query, if a
primary column is given
// if not the default 'where' clause is used
if (isset($newData[$this->primaryCol])) {
$query['where'] = $this-
>primaryCol.'='.$this->db->quoteSmart($newData[$this-
>primaryCol]);
(..)
this quote "where" clause even if "raw" option is set.
Expected result:
----------------
do not quote if raw is enabled
Actual result:
--------------
quote