diff options
author | David M <davidmj@users.sourceforge.net> | 2006-06-17 11:32:07 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-06-17 11:32:07 +0000 |
commit | 751a154af01ac9cacdee5309d95ea115c0cecd5a (patch) | |
tree | fbd42a9e5662b93f0569eeda27be32714121c84e /phpBB/includes/db/sqlite.php | |
parent | 10846d462ac9aa4790157f02e6cbf76297c29b82 (diff) | |
download | forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.tar forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.tar.gz forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.tar.bz2 forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.tar.xz forums-751a154af01ac9cacdee5309d95ea115c0cecd5a.zip |
- SQLite handling in custom profiles
- Removed an extra ';'
- Install works with SQLite again
git-svn-id: file:///svn/phpbb/trunk@6082 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/db/sqlite.php')
-rw-r--r-- | phpBB/includes/db/sqlite.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/db/sqlite.php b/phpBB/includes/db/sqlite.php index 2d4aefcb4b..87d9af8c7f 100644 --- a/phpBB/includes/db/sqlite.php +++ b/phpBB/includes/db/sqlite.php @@ -41,7 +41,7 @@ class dbal_sqlite extends dbal $this->dbname = $database; $error = ''; - $this->db_connect_id = ($this->persistency) ? @sqlite_popen($this->server, 0666, $error) : @sqlite_open($this->server, 0666, $error);; + $this->db_connect_id = ($this->persistency) ? @sqlite_popen($this->server, 0666, $error) : @sqlite_open($this->server, 0666, $error); if ($this->db_connect_id) { |