[phplib] Little patch From: Guillaume Desclaux (gdesclaux <email protected>)
Date: 08/06/01

The "standard" local.inc should be patched like this to be conform with
the use of the $_PHPLIB variable :

old:
  function auth_loginform() {
    global $sess;
    global $challenge;

    $challenge = md5(uniqid($this->magic));
    $sess->register("challenge");

    include("crcloginform.ihtml");
  }

new :
  function auth_loginform() {
    global $sess;
    global $challenge;
    global $_PHPLIB;

    $challenge = md5(uniqid($this->magic));
    $sess->register("challenge");

    include($_PHPLIB["libdir"] . "crcloginform.ihtml");
  }

Bye

Guillaume

-- 
Abbestellen mit Mail an:   phplib-unsubscribe <email protected>
Kommandoliste mit Mail an: phplib-help <email protected>