Bugs item #450709, was opened at 2001-08-13 23:04
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450709&group_id=31885
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Richard Archer (richardarcher)
Assigned to: Nobody/Anonymous (nobody)
Summary: missing $_PHPLIB["libdir"] in local.inc
Initial Comment:
reposted from the mailing list
At 7:48 PM +0200 6/8/01, Guillaume Desclaux wrote:
>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");
> }
>
>
----------------------------------------------------------------------
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=403611&aid=450709&group_id=31885
|