Hi guys,
I'm runnning 2.0.13-6sarge2 on Debian GNU/Linux with
LDAP Auth MOD 1.1.8b.
After applying LDAP diffs to the code, users couldn't
register any more, 'cause the registration page didn't
open.
I've solved the problem by substituting the line 92 of
includes/page_header.php:
if ($board_config['disable_guest'] == 1 &&
defined("IN_LOGIN") && !defined("IN_SEARCHUSER"))
with:
if ($board_config['disable_guest'] == 1 &&
!defined("IN_LOGIN") && !defined("IN_SEARCHUSER") &&
$mode != 'register')
Bye
--
Akira