diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-02-10 15:11:59 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-02-10 15:11:59 +0100 |
commit | 7d7b304bd98b310957d5077048899ea6e908583a (patch) | |
tree | be5eddd607b09bef39e221478da73a81cdf9ad07 /system/database | |
parent | 1c175c8d9697d6e8163770c45643f97e557149e6 (diff) |
Changed double quotes to single
Diffstat (limited to 'system/database')
-rw-r--r-- | system/database/drivers/pdo/pdo_driver.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/database/drivers/pdo/pdo_driver.php b/system/database/drivers/pdo/pdo_driver.php index 5e5c01ef9..e84c1aaaf 100644 --- a/system/database/drivers/pdo/pdo_driver.php +++ b/system/database/drivers/pdo/pdo_driver.php @@ -117,7 +117,7 @@ class CI_DB_pdo_driver extends CI_DB { // $db['hostname'] = 'pdodriver:host(/Server(/DSN))=hostname(/DSN);'; // We need to get the prefix (pdodriver used by PDO). $this->dsn = $this->hostname; - $split_dsn = explode(":", $this->hostname); + $split_dsn = explode(':', $this->hostname); $this->pdodriver = $split_dsn[0]; // End this part of the dsn with a semicolon |