Remove extraneous quotes from input queries

This commit is contained in:
Timothy Warren 2014-02-10 15:01:46 -05:00
parent 56ea38ccad
commit 65ff7d8d03
1 changed files with 0 additions and 9 deletions

View File

@ -1259,15 +1259,6 @@ class Query_Builder implements iQuery_Builder {
{
$vals = array_merge($this->values, (array) $this->where_values);
}
// Add quotes to 'string' values
foreach($vals as &$v)
{
if ( ! is_numeric($v))
{
$v = "'{$v}'";
}
}
$start_time = microtime(TRUE);