narrowing in.. I think accounts->exists() is really screwed

This commit is contained in:
skeeter 2001-03-18 17:47:09 +00:00
parent b4dd1a649b
commit ec649569a4

View File

@ -275,7 +275,9 @@
while ($user = each($users))
{
$userid = intval($user[0]);
if($userid != $owner && $phpgw->accounts->exists($userid) == True)
echo '<!-- USERID = '.$userid.' -->'."\n";
// if($userid != $owner && $phpgw->accounts->exists($userid) == True)
if($userid != $owner)
{
$str .= ' <option value="' . $userid . '"'.$parts[$userid].'>('.$phpgw->accounts->get_type($userid).') '.$user[1].'</option>'."\n";
}