Changeset 2196
- Timestamp:
- 02/29/2008 08:14:45 AM (10 months ago)
- Location:
- trunk/system/libraries/drivers/Database
- Files:
-
- 4 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/drivers/Database/Mssql.php
r2193 r2196 124 124 public function escape_column($column) 125 125 { 126 if (!$this-> config['escape'])126 if (!$this->db_config['escape']) 127 127 return $column; 128 128 … … 263 263 public function escape_str($str) 264 264 { 265 if (!$this-> config['escape'])265 if (!$this->db_config['escape']) 266 266 return $str; 267 267 -
trunk/system/libraries/drivers/Database/Mysql.php
r2193 r2196 253 253 public function escape_str($str) 254 254 { 255 if (!$this-> config['escape'])255 if (!$this->db_config['escape']) 256 256 return $str; 257 257 -
trunk/system/libraries/drivers/Database/Pdosqlite.php
r2193 r2196 209 209 public function escape_str($str) 210 210 { 211 if (!$this-> config['escape'])211 if (!$this->db_config['escape']) 212 212 return $str; 213 213 -
trunk/system/libraries/drivers/Database/Pgsql.php
r2193 r2196 88 88 public function escape_table($table) 89 89 { 90 if (!$this-> config['escape'])90 if (!$this->db_config['escape']) 91 91 return $table; 92 92 … … 96 96 public function escape_column($column) 97 97 { 98 if (!$this-> config['escape'])98 if (!$this->db_config['escape']) 99 99 return $column; 100 100 … … 220 220 public function escape_str($str) 221 221 { 222 if (!$this-> config['escape'])222 if (!$this->db_config['escape']) 223 223 return $str; 224 224
