Fix feeds migration & disable email transport

This commit is contained in:
Nicolas Le Goff
2015-02-12 17:35:13 +01:00
parent 4cd2ef9a6d
commit 37c667113f
4 changed files with 74 additions and 11 deletions

View File

@@ -559,7 +559,11 @@ class User_Query implements User_QueryInterface
$users = new ArrayCollection();
foreach ($rs as $row) {
$users[] = User_Adapter::getInstance($row['usr_id'], $this->app);
try {
$users[] = User_Adapter::getInstance($row['usr_id'], $this->app);
} catch (\Exception $e) {
}
}
$this->results = $users;