From af5bb2dde0857fea96266e4fc8a3fae705b50260 Mon Sep 17 00:00:00 2001 From: z0rglub Date: Fri, 3 Sep 2004 22:05:31 +0000 Subject: [PATCH] - in admin/configuration, add new step with "sections" (general, comments, default, upload, metadata, sessions) - admin/configuration.php and its template have been higly simplificated by making things more generic : for example, for each configuration parameter, its name must correspond to the name we find in the config table and belongs to a section, in the lang array we find : - $lang['conf_
_'] - $lang['conf_
__info'] - $lang['conf_
__error'] optionnaly - more described message when connection to database server is impossible - redefinitions of get_languages and get_templates functions - deletion of configuration parameters : webmaster, session_keyword - rename of configuration parameters : - default_lang => default_language - default_style => default_template git-svn-id: http://piwigo.org/svn/trunk@513 68402e56-0260-453c-a942-63ccdbb3a9ee --- install.php | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/install.php b/install.php index 6e7fd969f..8c57977aa 100644 --- a/install.php +++ b/install.php @@ -264,21 +264,15 @@ if ( isset( $_POST['install'] )) , 'phpwebgallery_' , $table_prefix ); - $query = 'UPDATE '.CONFIG_TABLE; - $query.= " SET value = '".$admin_name."'"; - $query.= " WHERE param = 'webmaster'"; - $query.= ';'; - mysql_query( $query ); - $query = 'UPDATE '.CONFIG_TABLE; $query.= " SET value = '".$admin_mail."'"; $query.= " WHERE param = 'mail_webmaster'"; $query.= ';'; mysql_query( $query ); - $query = 'UPDATE '.CONFIG_TABLE; + $query = 'UPDATE '.CONFIG_TABLE; $query.= " SET value = '".$language."'"; - $query.= " WHERE param = 'default_lang'"; + $query.= " WHERE param = 'default_language'"; $query.= ';'; mysql_query( $query );