Skip to content
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
4 changes: 2 additions & 2 deletions apps/user_ldap/lib/Controller/WizardController.php
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ public function action(
throw new OCSException();

default:
throw new OCSException($this->l->t('Action does not exist'));
throw new OCSException('Action ' . $wizardAction . 'does not exist');
break;
}
} catch (OCSException $e) {
Expand Down Expand Up @@ -149,7 +149,7 @@ function (string $uid): void {
$mapping = Server::get(GroupMapping::class);
$result = $mapping->clear();
} else {
throw new OCSException($this->l->t('Unsupported subject ' . $subject));
throw new OCSException('Unsupported subject ' . $subject);
}

if (!$result) {
Expand Down
Loading