mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-29 04:39:56 +03:00
- bug 181 fixed: "Parameters not created in phpwebgallery_config during
upgrade". gallery_title and gallery_description had not been added to config table. (use|show)_(exif|iptc) and authorize_remembering have also been removed... git-svn-id: http://piwigo.org/svn/trunk@911 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
9fc85a0473
commit
aa27a6b598
3 changed files with 63 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2005-10-23 Pierrick LE GALL
|
||||||
|
|
||||||
|
* bug 181 fixed: "Parameters not created in phpwebgallery_config
|
||||||
|
during upgrade". gallery_title and gallery_description had not
|
||||||
|
been added to config table. (use|show)_(exif|iptc) and
|
||||||
|
authorize_remembering have also been removed...
|
||||||
|
|
||||||
2005-10-22 chrisaga
|
2005-10-22 chrisaga
|
||||||
|
|
||||||
* bug 177 fixed: icon tools wrong position in Safari and Konqueror
|
* bug 177 fixed: icon tools wrong position in Safari and Konqueror
|
||||||
|
|
|
@ -60,7 +60,12 @@ DELETE
|
||||||
\'upload_maxheight\',
|
\'upload_maxheight\',
|
||||||
\'upload_maxwidth_thumbnail\',
|
\'upload_maxwidth_thumbnail\',
|
||||||
\'upload_maxheight_thumbnail\',
|
\'upload_maxheight_thumbnail\',
|
||||||
\'mail_notification\'
|
\'mail_notification\',
|
||||||
|
\'use_iptc\',
|
||||||
|
\'use_exif\',
|
||||||
|
\'show_iptc\',
|
||||||
|
\'show_exif\',
|
||||||
|
\'authorize_remembering\'
|
||||||
)
|
)
|
||||||
;';
|
;';
|
||||||
mysql_query($query);
|
mysql_query($query);
|
||||||
|
@ -250,6 +255,28 @@ UPDATE ".CONFIG_TABLE."
|
||||||
UPDATE ".CONFIG_TABLE."
|
UPDATE ".CONFIG_TABLE."
|
||||||
SET value = 'yoga'
|
SET value = 'yoga'
|
||||||
WHERE param = 'default_template'
|
WHERE param = 'default_template'
|
||||||
|
;",
|
||||||
|
|
||||||
|
"
|
||||||
|
INSERT INTO ".CONFIG_TABLE."
|
||||||
|
(param,value,comment)
|
||||||
|
VALUES
|
||||||
|
(
|
||||||
|
'gallery_title',
|
||||||
|
'PhpWebGallery demonstration site',
|
||||||
|
'Title at top of each page and for RSS feed'
|
||||||
|
)
|
||||||
|
;",
|
||||||
|
|
||||||
|
"
|
||||||
|
INSERT INTO ".CONFIG_TABLE."
|
||||||
|
(param,value,comment)
|
||||||
|
VALUES
|
||||||
|
(
|
||||||
|
'gallery_description',
|
||||||
|
'My photos web site',
|
||||||
|
'Short description displayed with gallery title'
|
||||||
|
)
|
||||||
;"
|
;"
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
|
@ -60,7 +60,12 @@ DELETE
|
||||||
\'upload_maxheight\',
|
\'upload_maxheight\',
|
||||||
\'upload_maxwidth_thumbnail\',
|
\'upload_maxwidth_thumbnail\',
|
||||||
\'upload_maxheight_thumbnail\',
|
\'upload_maxheight_thumbnail\',
|
||||||
\'mail_notification\'
|
\'mail_notification\',
|
||||||
|
\'use_iptc\',
|
||||||
|
\'use_exif\',
|
||||||
|
\'show_iptc\',
|
||||||
|
\'show_exif\',
|
||||||
|
\'authorize_remembering\'
|
||||||
)
|
)
|
||||||
;';
|
;';
|
||||||
mysql_query($query);
|
mysql_query($query);
|
||||||
|
@ -250,6 +255,28 @@ UPDATE ".CONFIG_TABLE."
|
||||||
UPDATE ".CONFIG_TABLE."
|
UPDATE ".CONFIG_TABLE."
|
||||||
SET value = 'yoga'
|
SET value = 'yoga'
|
||||||
WHERE param = 'default_template'
|
WHERE param = 'default_template'
|
||||||
|
;",
|
||||||
|
|
||||||
|
"
|
||||||
|
INSERT INTO ".CONFIG_TABLE."
|
||||||
|
(param,value,comment)
|
||||||
|
VALUES
|
||||||
|
(
|
||||||
|
'gallery_title',
|
||||||
|
'PhpWebGallery demonstration site',
|
||||||
|
'Title at top of each page and for RSS feed'
|
||||||
|
)
|
||||||
|
;",
|
||||||
|
|
||||||
|
"
|
||||||
|
INSERT INTO ".CONFIG_TABLE."
|
||||||
|
(param,value,comment)
|
||||||
|
VALUES
|
||||||
|
(
|
||||||
|
'gallery_description',
|
||||||
|
'My photos web site',
|
||||||
|
'Short description displayed with gallery title'
|
||||||
|
)
|
||||||
;"
|
;"
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue