diff options
Diffstat (limited to '')
-rw-r--r-- | install/upgrade_1.4.1.php | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/install/upgrade_1.4.1.php b/install/upgrade_1.4.1.php index ea17f32a4..a5f8f38c6 100644 --- a/install/upgrade_1.4.1.php +++ b/install/upgrade_1.4.1.php @@ -60,7 +60,12 @@ DELETE \'upload_maxheight\', \'upload_maxwidth_thumbnail\', \'upload_maxheight_thumbnail\', - \'mail_notification\' + \'mail_notification\', + \'use_iptc\', + \'use_exif\', + \'show_iptc\', + \'show_exif\', + \'authorize_remembering\' ) ;'; mysql_query($query); @@ -250,6 +255,28 @@ UPDATE ".CONFIG_TABLE." UPDATE ".CONFIG_TABLE." SET value = 'yoga' 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' + ) ;" ); |