diff options
author | nikrou <nikrou@piwigo.org> | 2010-03-29 18:16:33 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-03-29 18:16:33 +0000 |
commit | a6a3a6e0c271099b6f199c7363eba572fc7b5266 (patch) | |
tree | 25176b040dd1bc2b0ba7e7bbeda5704883c1c798 /install/db/86-database.php | |
parent | a37f1fbae1309c44531f36e0109b1f2bfecf2539 (diff) |
Fix some issues with database engines :
- insert into syntax not correct for posgresql or sqlite
- add languages table
- incorrect function for row count (sqlite)
git-svn-id: http://piwigo.org/svn/trunk@5452 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | install/db/86-database.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install/db/86-database.php b/install/db/86-database.php index 5ff78a033..3a736e3e2 100644 --- a/install/db/86-database.php +++ b/install/db/86-database.php @@ -56,7 +56,7 @@ foreach ($themes_to_activate as $theme) { $query = ' INSERT INTO '.PREFIX_TABLE.'themes - SET id = "'.$theme.'" + (id) VALUES(\''.$theme.'\' ;'; pwg_query($query); } |