Verified Commit 1f1ae374 authored by dockx thibault's avatar dockx thibault
Browse files

:sparkles: Feat(installation) - Installation part 2 (Success)

Adapts setup to php8.2 - installation part 2 (success)
No related merge requests found
Showing with 5 additions and 3 deletions
+5 -3
...@@ -59,7 +59,6 @@ ini_set("session.gc_maxlifetime", 24 * 60 * 60); ...@@ -59,7 +59,6 @@ ini_set("session.gc_maxlifetime", 24 * 60 * 60);
session_start(); // Start or resume the session session_start(); // Start or resume the session
session::set('DEBUGLEVEL', 0); session::set('DEBUGLEVEL', 0);
session::set('SETUP_INIT', TRUE);
CSRFProtection::check(); CSRFProtection::check();
......
...@@ -120,8 +120,9 @@ class config ...@@ -120,8 +120,9 @@ class config
// Recreate the XML parser // Recreate the XML parser
$this->parser = xml_parser_create(); $this->parser = xml_parser_create();
// Update config from backend only if not currently performing FD installation. // Update config from backend only if not currently performing FD installation.
if ($_SESSION['SETUP_INIT'] === FALSE) { if (!isset($_SESSION['SETUP_INIT'])) {
$this->load_inldap_config(); $this->load_inldap_config();
} }
} }
......
...@@ -566,7 +566,7 @@ class LDAP ...@@ -566,7 +566,7 @@ class LDAP
*/ */
function clearResult ($srp) function clearResult ($srp)
{ {
if ($this->hasres[$srp]) { if ($this->hasres[$srp] && !is_bool($this->sr[$srp])) {
$this->hasres[$srp] = FALSE; $this->hasres[$srp] = FALSE;
@ldap_free_result($this->sr[$srp]); @ldap_free_result($this->sr[$srp]);
} }
......
...@@ -56,6 +56,8 @@ class setup implements FusionDirectoryDialog ...@@ -56,6 +56,8 @@ class setup implements FusionDirectoryDialog
header('Location: index.php'); header('Location: index.php');
exit(); exit();
} }
session::set('SETUP_INIT', TRUE);
} }
public function render (): string public function render (): string
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment