|
Lines 179-185
class UserImportExportPlugin extends ImportExportPlugin {
|
Link Here
|
|---|
|
| 179 |
$rolePaths = array(); |
179 |
$rolePaths = array(); |
| 180 |
foreach (Request::getUserVar('roles') as $rolePath) { |
180 |
foreach (Request::getUserVar('roles') as $rolePath) { |
| 181 |
$roleId = $roleDao->getRoleIdFromPath($rolePath); |
181 |
$roleId = $roleDao->getRoleIdFromPath($rolePath); |
| 182 |
$thisRoleUsers =& $roleDao->getUsersByRoleId($roleId, $schedConf->getId()); |
182 |
$thisRoleUsers =& $roleDao->getUsersByRoleId($roleId, $schedConf->getConferenceId(), $schedConf->getId()); |
| 183 |
foreach ($thisRoleUsers->toArray() as $user) { |
183 |
foreach ($thisRoleUsers->toArray() as $user) { |
| 184 |
$users[$user->getId()] = $user; |
184 |
$users[$user->getId()] = $user; |
| 185 |
} |
185 |
} |