Selaa lähdekoodia

Comments change

Virgil-Adrian Teaca 7 vuotta sitten
vanhempi
commit
8cd7a62bf5
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      Protocols/Http.php

+ 1 - 1
Protocols/Http.php

@@ -443,7 +443,7 @@ class Http
         HttpCache::$instance->sessionStarted = true;
         // Generate a SID.
         if (!isset($_COOKIE[HttpCache::$sessionName]) || !is_file(HttpCache::$sessionPath . '/ses' . $_COOKIE[HttpCache::$sessionName])) {
-            // Create a new unique session_id and its associated file name.
+            // Create a unique session_id and the associated file name.
             while (true) {
                 $session_id = static::sessionCreateId();
                 if (!is_file($file_name = HttpCache::$sessionPath . '/sess_' . $session_id)) break;