Added: Sync contacts tags

Fixed: IMAP search
This commit is contained in:
RainLoop Team 2014-05-14 19:58:04 +04:00
parent e88c41c90a
commit 79e686f412
14 changed files with 28963 additions and 29048 deletions

View file

@ -125,12 +125,13 @@ class AddressBook extends \RainLoop\Providers\AbstractProvider
/**
* @param string $sEmail
* @param bool $bCache = true
*
* @return array
*/
public function GetContactTags($sEmail)
public function GetContactTags($sEmail, $bCache = true)
{
return $this->IsActive() ? $this->oDriver->GetContactTags($sEmail) : array();
return $this->IsActive() ? $this->oDriver->GetContactTags($sEmail, $bCache) : array();
}
/**