|
From: Benjamin C. <bc...@us...> - 2001-12-10 13:42:42
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv31807
Modified Files:
include.php
Log Message:
Cleanup
Index: include.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/include.php,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -r1.81 -r1.82
--- include.php 2001/12/08 14:55:42 1.81
+++ include.php 2001/12/10 13:42:39 1.82
@@ -484,7 +484,7 @@
function maskemail($email) {
global $auth;
- if (HIDE_EMAIL && !$auth->auth['uid']) {
+ if (HIDE_EMAIL && empty($auth->auth['uid'])) {
return '******';
} elseif (MASK_EMAIL) {
return str_replace('@', ' at ', str_replace('.', ' dot ', $email));
|