Côme Chilliet 6 days ago
committed by GitHub
parent
commit
f68cede2bc
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 4
      apps/user_ldap/lib/Controller/WizardController.php

4
apps/user_ldap/lib/Controller/WizardController.php

@ -104,7 +104,7 @@ class WizardController extends OCSController {
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) {
@ -149,7 +149,7 @@ class WizardController extends OCSController {
$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) {

Loading…
Cancel
Save