|
From: Benjamin C. <bc...@us...> - 2003-07-05 22:54:29
|
Update of /cvsroot/phpbt/phpbt/inc
In directory sc8-pr-cvs1:/tmp/cvs-serv17086/inc
Modified Files:
functions.php
Log Message:
Fixes bug #765219 - Unmasked email showing up in assigned to drop down box
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- functions.php 4 Jun 2003 19:16:40 -0000 1.41
+++ functions.php 5 Jul 2003 22:54:26 -0000 1.42
@@ -159,7 +159,8 @@
} else {
$sel = '';
}
- $text .= "<option value=\"{$row['user_id']}\"$sel>{$row['login']}</option>";
+ $text .= "<option value=\"{$row['user_id']}\"$sel>".
+ maskemail($row['login'])."</option>";
}
break;
case 'bug_cc':
|