* EMailAdmin/Mail: fix to work with Horde_Imap_Client 2.24.1+ (Tried to access unknown attribute "capability"!)

This commit is contained in:
Ralf Becker 2014-08-11 15:10:41 +00:00
parent ed5d06544b
commit 7dbba4dec0

View File

@ -241,7 +241,8 @@ class emailadmin_imap extends Horde_Imap_Client_Socket implements defaultimap
{
return $this->getParam($name);
}
throw new egw_exception_wrong_parameter("Tried to access unknown attribute '$name'!");
// calling Horde_Imap_Client's __get() method available since 2.24.1
return parent::__get($name);
}
}