|
From: Dan S. <Da...@IN...> - 2001-06-19 00:12:27
|
The message "Please change your password now!", as seen on the user
preferences page after first login, is stored in a funny place. It is
hard-coded into the Apache::User module:
$form->{returnto} = url2abs($newpass
? "$constants->{rootdir}/users.pl?op=edit" .
"user¬e=Please+change+your+password+now!"
: $form->{returnto}
? $form->{returnto}
: $uri
);
Shouldn't this phrase be stored in a template?
|