View Issue Details

IDProjectCategoryView StatusLast Update
0008861mantisbtldappublic2009-10-07 14:20
Reporterbenben Assigned Tovboctor  
PrioritynormalSeveritytrivialReproducibilityalways
Status closedResolutionfixed 
Product Version1.1.1 
Fixed in Version1.2.0rc2 
Summary0008861: Hide password boxes when using LDAP
Description

When you use LDAP, you might want to 'hide' the password boxes when creating a user.

I changed line 69 of manage_user_create_page.php

from:
if ( OFF == config_get( 'send_reset_password' ) ) {

to:
if ( ( OFF == config_get( 'send_reset_password' ) ) && ( LDAP != config_get( 'login_method' ) ) ) {

Tagspatch

Activities

benben

benben

2008-02-06 09:45

reporter   ~0016966

Last edited: 2008-02-06 10:12

I did a bit more digging about and realised that login_method returns an integer.
I'm currently using...
if ( ( OFF == config_get( 'send_reset_password' ) ) && ( 4 != config_get( 'login_method' ) ) ) {