Skip to content
Snippets Groups Projects
Commit bd530f79 authored by Nicolas Borboën's avatar Nicolas Borboën
Browse files

[fix] tequila bug

parent 4d24a7d1
No related branches found
No related tags found
No related merge requests found
......@@ -232,8 +232,8 @@ class TequilaClient{
}
/* Initializations. If no parameter given, get info from config file */
if (empty ($sServer)) $sServer = GetConfigOption ('sServer');
if (empty ($sServer)) $sServerUrl = GetConfigOption ('sServerUrl');
if (empty ($sServer)) $sServer = GetConfigOption ('sServer');
if (empty ($sServerUrl)) $sServerUrl = GetConfigOption ('sServerUrl');
$aEtcConfig = $this->LoadEtcConfig ();
......
<?php
$aConfig = array (
'sServer' => 'https://tequila.epfl.ch',
'sServerUrl' => 'https://tequila.epfl.ch',
'iTimeout' => 86400,
'logoutUrl' => "https://localhost/tequila/logout.php");
'logoutUrl' => "https://localhost/tequila/logout.php"
);
/********************************************************
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment