[phplib] Sessionfehler "This has not been coded yet" bei PHPLIB From: Frank Gudenkauf (frank <email protected>)
Date: 08/18/00

Hallo Liste,

was muß in die session.inc bei put_id() mit case "get" eingetragen
werden?
Nachfolgend der Source-Code.

Besten Dank

Frank

Ausschnitt aus der session.inc:
--------------------------------------------
  ## put_id():
  ##
  ## Stop using the current session id (unset cookie, ...) and
  ## abandon a session.
  function put_id() {
    global $HTTP_COOKIE_VARS;
 
    $this->name =
$this->cookiename==""?$this->classname:$this->cookiename;
 
    switch ($this->mode) {
      case "inline":
        die("This has not been coded yet.");
      break;

----------------------------------------------
      case "get":
        die("This has not been coded yet.");
      break;
----------------------------------------------
 
      default:
            SetCookie($this->name, "", 0, "/", $this->cookie_domain);
            $HTTP_COOKIE_VARS[$this->name] = "";
      break;
    }
  }
----------------------------------------

---------------------------------------------------------------------
To unsubscribe, e-mail: phplib-unsubscribe <email protected>
For additional commands, e-mail: phplib-help <email protected>