Roundcube Community Forum

 

Turn on browser autocompletion on login page

Started by rockwilda, May 25, 2007, 12:03:43 PM

Previous topic - Next topic

rockwilda

Hallo,

is it possible to turn ON browser autocompletion on login page ?

Nico

SKaero

Not at this time, but you do something like that with a hack.

rockwilda

Do you know, in which file this feature is implemented?

rockwilda

Found it.

Change line 1444 in program/include/main.inc
from
$input_user = new textfield(array('name' => '_user', 'id' => 'rcmloginuser', 'size' => 30, 'autocomplete' => 'off'));to
$input_user = new textfield(array('name' => '_user', 'id' => 'rcmloginuser', 'size' => 30, 'autocomplete' => 'on'));
Nico