From 3c8309a7e621ede168cf7f6dfd8c8d55144525ea Mon Sep 17 00:00:00 2001 From: z0rglub Date: Sat, 2 Oct 2004 23:12:50 +0000 Subject: - deletion of session_time and session_id_size as config parameter - new feature : "remember me" creates a long time cookie - possibility to set the default authentication method to URI or cookie - really technical parameters (session identifier size, session duration) are set in the config file and not in database + configuration.php git-svn-id: http://piwigo.org/svn/trunk@541 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/common.inc.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'include/common.inc.php') diff --git a/include/common.inc.php b/include/common.inc.php index 6d4b37195..8853e67f1 100644 --- a/include/common.inc.php +++ b/include/common.inc.php @@ -167,9 +167,10 @@ $user_ip = encode_ip($client_ip); // Setup gallery wide options, if this fails then we output a CRITICAL_ERROR // since basic gallery information is not available // -$query = 'SELECT param,value'; -$query.= ' FROM '.CONFIG_TABLE; -$query.= ';'; +$query = ' +SELECT param,value + FROM '.CONFIG_TABLE.' +;'; if( !( $result = mysql_query( $query ) ) ) { die("Could not query config information"); -- cgit v1.2.3