Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing 2 bugs when exporting backend users (#22) #23

Merged
merged 1 commit into from
Nov 27, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions Classes/Command/ExportCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,17 @@ public function exportTable(
continue;
}

// do not update usergroups by UID when exporting to other systems
// UID maybe diffrent for the same usergroup name
if($table == 'be_users' && $column == 'usergroup' && $value) {
$usergroups = $this->databaseConnection->exec_SELECTgetRows('title', 'be_groups', 'uid IN ('.$value.')');
// Do not update usergroups by UID when exporting to other systems
// UID maybe different for the same usergroup name
if ($table == 'be_users' && $column == 'usergroup' && $value) {
$usergroups = $this->databaseConnection->exec_SELECTgetRows('title', 'be_groups', 'uid IN (' . $value . ')');
// @todo Currently the sorting of usergroups in the original records is ignored when exporting usergroups
$usergroupsTitles = [];
foreach ($usergroups as $singleUserGroup) {
$usergroupsTitles[] = $singleUserGroup['title'];
}
$explodedValue = $usergroupsTitles;
$value = $usergroupsTitles[0]; // Overwrite $value for case count() == 1, see below
} else {
$explodedValue = explode(',', $value);
}
Expand Down