Skip to content
Snippets Groups Projects
Commit a1226373 authored by gnaegi's avatar gnaegi
Browse files

OO-291 fix missing error on wrong group id

parent 9bcf7df4
No related branches found
No related tags found
No related merge requests found
...@@ -216,7 +216,7 @@ public class BusinessGroupSearchController extends FormBasicController implement ...@@ -216,7 +216,7 @@ public class BusinessGroupSearchController extends FormBasicController implement
try { try {
new Long(id.getValue()); new Long(id.getValue());
} catch (NumberFormatException e) { } catch (NumberFormatException e) {
id.setErrorKey("", null); id.setErrorKey("search.id.format", null);
allOk &= false; allOk &= false;
} }
} }
......
...@@ -51,6 +51,7 @@ search.no=Nein ...@@ -51,6 +51,7 @@ search.no=Nein
search.resources=In Kursen verwendet search.resources=In Kursen verwendet
search.headless=Orphans search.headless=Orphans
search.headless.check=Gruppe ohne Mitglieder und Ressourcen search.headless.check=Gruppe ohne Mitglieder und Ressourcen
search.id.format=Keine g\u00FCltige Gruppen-ID
cif.displayname=Name cif.displayname=Name
cif.description=Beschreibung cif.description=Beschreibung
cif.owner=Betreuer cif.owner=Betreuer
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment