Cleanup GroupDAV code

This commit is contained in:
Jörg Lehrke 2010-03-22 15:00:39 +00:00
parent 9aa8ee01a5
commit ae5bd4139b

View File

@ -839,7 +839,7 @@ class groupdav extends HTTP_WebDAV_Server
}
$parts = explode('/', $this->_unslashify($path));
if ($this->accounts->name2id($parts[0]))
if (($account_id = $this->accounts->name2id($parts[0], 'account_lid')))
{
// /$user/$app/...
$user = array_shift($parts);
@ -850,7 +850,7 @@ class groupdav extends HTTP_WebDAV_Server
if ($user)
{
$user_prefix = '/'.$user;
$user = $this->accounts->name2id($user,'account_lid',$app != 'addressbook' ? 'u' : null);
$user = $account_id;
}
else
{