|
From: Benjamin C. <bc...@us...> - 2001-12-14 15:04:17
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv23335
Modified Files:
CHANGELOG include.php
Log Message:
Fixes bug #486223 - Login prompt now shows Login instead of Email when login names are separate from email addresses
Index: CHANGELOG
===================================================================
RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- CHANGELOG 2001/12/14 14:42:49 1.36
+++ CHANGELOG 2001/12/14 15:04:14 1.37
@@ -18,6 +18,8 @@
: Fixed a bug preventing users from being assigned to the User group when
created.
: Fixed a bug with the download option of the installation process.
+: Change the label on the login box from Email to Login if configuration
+ option EMAIL_IS_LOGIN is not true.
-- 0.5.1 -- 11 Nov 2001
: Fixed a bug (introduced in 0.5.0) with severity color not being pulled in
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- include.php 2001/12/14 14:41:06 1.83
+++ include.php 2001/12/14 15:04:14 1.84
@@ -188,7 +188,8 @@
} else {
$this->set_var(array(
'loggedinas' => '',
- 'loblock' => ''
+ 'loblock' => '',
+ 'loginlabel' => EMAIL_IS_LOGIN ? 'Email' : 'Login'
));
$this->parse('liblock', 'loginblock', true);
}
|