Changeset 1895
- Timestamp:
- 01/31/2008 06:35:42 PM (11 months ago)
- Location:
- trunk/system/libraries
- Files:
-
- 5 modified
-
Database.php (modified) (1 diff)
-
drivers/Database/Mysql.php (modified) (1 diff)
-
drivers/Database/Mysqli.php (modified) (1 diff)
-
drivers/Database/Pdosqlite.php (modified) (1 diff)
-
drivers/Database/Pgsql.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Database.php
r1894 r1895 197 197 throw new Kohana_Database_Exception('database.connection', $this->driver->show_error()); 198 198 199 // Clear passwordafter successful connect200 $this->config['connection'] ['pass']= NULL;199 // Clear connection after successful connect 200 $this->config['connection'] = NULL; 201 201 } 202 202 } -
trunk/system/libraries/drivers/Database/Mysql.php
r1881 r1895 70 70 } 71 71 72 // Clear passwordafter successful connect73 $this->db_config['connection'] ['pass']= NULL;72 // Clear connection after successful connect 73 $this->db_config['connection'] = NULL; 74 74 75 75 return $this->link; -
trunk/system/libraries/drivers/Database/Mysqli.php
r1881 r1895 58 58 } 59 59 60 // Clear passwordafter successful connect61 $this->db_config['connection'] ['pass']= NULL;60 // Clear connection after successful connect 61 $this->db_config['connection'] = NULL; 62 62 63 63 return $this->link; -
trunk/system/libraries/drivers/Database/Pdosqlite.php
r1841 r1895 56 56 } 57 57 58 // Clear connection after successful connect 59 $this->db_config['connection'] = NULL; 60 58 61 return $this->link; 59 62 } -
trunk/system/libraries/drivers/Database/Pgsql.php
r1881 r1895 54 54 } 55 55 56 // Clear passwordafter successful connect57 $this->db_config['connection'] ['pass']= NULL;56 // Clear connection after successful connect 57 $this->db_config['connection'] = NULL; 58 58 59 59 return $this->link;
