Changeset 15
- Timestamp:
- 01/22/06 23:16:18
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/calendar3/webadmin/src/org/bedework/webadmin/authuser/PEFetchAuthAction.java
r2 r15 69 69 * <p>Forwards to:<ul> 70 70 * <li>"noAccess" user not authorised.</li> 71 * <li>"notFound" no such event.</li>71 * <li>"notFound" no such user.</li> 72 72 * <li>"continue" continue on to update page.</li> 73 73 * </ul> … … 96 96 BwAuthUser au = svci.getUserAuth().getUser(userid); 97 97 98 if (au == null) { 99 form.getErr().emit("org.bedework.userid.notfound", userid); 100 return "notFound"; 101 } 102 98 103 if (debug) { 99 104 logIt("Retrieved auth user " + au); trunk/calendar3/webcommon/src/org/bedework/webcommon/pref/FetchPrefsAction.java
r11 r15 103 103 BwUser user = svc.findUser(str); 104 104 if (user == null) { 105 form.getErr().emit("org.bedework. client.notfound", str);105 form.getErr().emit("org.bedework.userid.notfound", str); 106 106 return "notFound"; 107 107 }
