diff options
author | plegall <plg@piwigo.org> | 2010-03-22 10:57:59 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-22 10:57:59 +0000 |
commit | 7d0c4675f802aa0feb6cbf470b86ad274c737570 (patch) | |
tree | 252297b8827ce010fdc2f8a9e7fb2cc1b4024d0a /install | |
parent | cd3411f46ca9485312e3520d5ede3a46e3dd8ae3 (diff) |
feature 1502: bug fixed, the themes needs a name at installation time, or else
they can't be chosen in the user profile.
git-svn-id: http://piwigo.org/svn/trunk@5253 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'install')
-rw-r--r-- | install/config.sql | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/install/config.sql b/install/config.sql index c8d83a908..3f807a6bb 100644 --- a/install/config.sql +++ b/install/config.sql @@ -33,6 +33,6 @@ INSERT INTO piwigo_config (param,value,comment) VALUES ('upload_user_access',2 / INSERT INTO piwigo_config (param,value,comment) VALUES ('extents_for_templates','a:0:{}','Actived template-extension(s)'); INSERT INTO piwigo_config (param,value,comment) VALUES ('blk_menubar','','Menubar options'); -INSERT INTO piwigo_themes (id) VALUES ('Sylvia'); -INSERT INTO piwigo_themes (id) VALUES ('clear'); -INSERT INTO piwigo_themes (id) VALUES ('dark'); +INSERT INTO piwigo_themes (id, name) VALUES ('Sylvia', 'Sylvia'); +INSERT INTO piwigo_themes (id, name) VALUES ('clear', 'clear'); +INSERT INTO piwigo_themes (id, name) VALUES ('dark', 'dark'); |