[Phplib-users] minor problem(?) with Auth feature
Brought to you by:
nhruby,
richardarcher
|
From: Manuel A. <mpa...@so...> - 2001-11-15 02:33:39
|
Hi...
I have some protected pages using the Auth feature of PHPLIB.
When i first tested it, it didn't work, but making an apparently harmless=20
change made it work:
The version of the script that failed looked like this:
<?php
page_open(array("sess" =3D> "Gili_Session", "auth" =3D> "Gili_auth"));
<actual code here>
?>
And with the "harmless" change:
<?php
page_open(array("sess" =3D> "Gili_Session", "auth" =3D> "Gili_auth"));
?>
<?php
<actual code here>
?>
Of course this isn't really a problem, but i'm really curious of why this=20
happens. PHP interpreter gotchas perhaps?
Manuel Aristar=E1n
mpa...@so...
Bah=EDa Blanca, Argentina
|