Skip to content

Commit

Permalink
feature 1502: bug fixed, the themes needs a name at installation time…
Browse files Browse the repository at this point in the history
…, 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
  • Loading branch information
plegall committed Mar 22, 2010
1 parent cd3411f commit 7d0c467
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install/config.sql
Expand Up @@ -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');

0 comments on commit 7d0c467

Please sign in to comment.