summaryrefslogtreecommitdiffstats
path: root/system
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-05-12 21:14:57 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-05-12 21:14:57 +0200
commit5fe155ecd05af4ee68ef093200fb6a241baa89ce (patch)
tree3ae7966baebe3c9edf96a86a235cf00a8641e40d /system
parent0d53b3bdc0cebb534e559ef1ddaaf05c6a12eccd (diff)
Escape behaviour in where() clauses has changed; values in those with the "FALSE" argument are no longer escaped (ie: quoted).
Diffstat (limited to 'system')
-rw-r--r--system/database/DB_active_rec.php41
1 files changed, 22 insertions, 19 deletions
diff --git a/system/database/DB_active_rec.php b/system/database/DB_active_rec.php
index 9a7ef5def..b53158577 100644
--- a/system/database/DB_active_rec.php
+++ b/system/database/DB_active_rec.php
@@ -69,14 +69,14 @@ class CI_DB_active_record extends CI_DB_driver {
* @access public
* @param string the table
* @return string
- */
+ */
function dbprefix($table = '')
{
if ($table == '')
{
$this->display_error('db_table_name_required');
}
-
+
return $this->dbprefix.$table;
}
@@ -104,7 +104,7 @@ class CI_DB_active_record extends CI_DB_driver {
$select = array($select);
}
}
-
+
foreach ($select as $val)
{
$val = trim($val);
@@ -120,7 +120,7 @@ class CI_DB_active_record extends CI_DB_driver {
$val = $this->_protect_identifiers($val);
}
}
-
+
if ($val != '')
{
$this->ar_select[] = $val;
@@ -183,7 +183,7 @@ class CI_DB_active_record extends CI_DB_driver {
{
$this->display_error('db_invalid_query');
}
-
+
$alias = ($alias != '') ? $alias : $select;
$sql = 'MIN('.$this->_protect_identifiers(trim($select)).') AS '.$this->_protect_identifiers(trim($alias));
@@ -217,7 +217,7 @@ class CI_DB_active_record extends CI_DB_driver {
}
$alias = ($alias != '') ? $alias : $select;
-
+
$sql = 'AVG('.$this->_protect_identifiers(trim($select)).') AS '.$this->_protect_identifiers(trim($alias));
$this->ar_select[] = $sql;
@@ -230,7 +230,7 @@ class CI_DB_active_record extends CI_DB_driver {
}
// --------------------------------------------------------------------
-
+
/**
* Select Sum
*
@@ -302,7 +302,7 @@ class CI_DB_active_record extends CI_DB_driver {
return $this;
}
-
+
// --------------------------------------------------------------------
/**
@@ -339,10 +339,10 @@ class CI_DB_active_record extends CI_DB_driver {
// First we remove any existing prefixes in the condition to avoid duplicates
$cond = preg_replace('|('.$this->dbprefix.')([\w\.]+)([\W\s]+)|', "$2$3", $cond);
-
+
// Next we add the prefixes to the condition
$cond = preg_replace('|([\w\.]+)([\W\s]+)(.+)|', $this->dbprefix . "$1$2" . $this->dbprefix . "$3", $cond);
- }
+ }
$join = $type.'JOIN '.$this->_protect_identifiers($this->dbprefix.$table, TRUE).' ON '.$cond;
@@ -354,7 +354,7 @@ class CI_DB_active_record extends CI_DB_driver {
return $this;
}
-
+
// --------------------------------------------------------------------
/**
@@ -453,15 +453,18 @@ class CI_DB_active_record extends CI_DB_driver {
{
$k .= ' =';
}
-
+
if ($v !== '' AND $v !== NULL)
{
- $v = ' '.$this->escape($v);
+ if ($escape === TRUE)
+ {
+ $v = ' '.$this->escape($v);
+ }
}
}
else
{
-
+
if ($escape === TRUE)
{
$k = $this->_protect_identifiers($k, TRUE);
@@ -511,7 +514,7 @@ class CI_DB_active_record extends CI_DB_driver {
* @return object
*/
function or_where_in($key = NULL, $values = NULL)
- {
+ {
return $this->_where_in($key, $values, FALSE, 'OR ');
}
@@ -529,7 +532,7 @@ class CI_DB_active_record extends CI_DB_driver {
* @return object
*/
function where_not_in($key = NULL, $values = NULL)
- {
+ {
return $this->_where_in($key, $values, TRUE);
}
@@ -547,7 +550,7 @@ class CI_DB_active_record extends CI_DB_driver {
* @return object
*/
function or_where_not_in($key = NULL, $values = NULL)
- {
+ {
return $this->_where_in($key, $values, TRUE, 'OR ');
}
@@ -566,7 +569,7 @@ class CI_DB_active_record extends CI_DB_driver {
* @return object
*/
function _where_in($key = NULL, $values = NULL, $not = FALSE, $type = 'AND ')
- {
+ {
if ($key === NULL || !is_array($values))
{
return;
@@ -580,7 +583,7 @@ class CI_DB_active_record extends CI_DB_driver {
}
$prefix = (count($this->ar_where) == 0) ? '' : $type;
-
+
$where_in = $prefix . $this->_protect_identifiers($key) . $not . " IN (" . implode(", ", $this->ar_wherein) . ") ";
$this->ar_where[] = $where_in;