Date: 08/06/01
- Next message: Guillaume Desclaux: "[phplib] Using multiples databases"
- Previous message: Jesse Swensen: "Re: [phplib] Multiple select"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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>
- Next message: Guillaume Desclaux: "[phplib] Using multiples databases"
- Previous message: Jesse Swensen: "Re: [phplib] Multiple select"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

