Changeset 7452
- Timestamp:
- Mar 2, 2018, 9:21:36 AM (6 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/net/sf/basedb/core/Message.java
r7381 r7452 463 463 catch (EmailException ex) 464 464 { 465 Application.getLogger().error("Could not send email for message: " + this, ex); 465 466 throw new BaseException("Could not send email for message:" + this, ex); 466 467 } -
trunk/src/core/net/sf/basedb/core/SessionControl.java
r7451 r7452 531 531 catch (EmailException ex) 532 532 { 533 log.error("Could not send verification code", ex); 533 534 throw new LoginException("Could not send verification code", ex); 534 535 } -
trunk/src/core/net/sf/basedb/core/User.java
r7410 r7452 655 655 catch (EmailException ex) 656 656 { 657 Application.getLogger().error("Could not send verification code", ex); 657 658 throw new LoginException("Could not send verification code", ex); 658 659 } -
trunk/www/views/devices/index.jsp
r7411 r7452 60 60 <%@ taglib prefix="base" uri="/WEB-INF/base.tld" %> 61 61 <%! 62 private static final ItemContext defaultContext = Base.createDefaultContext("name", "name,client,lastUsed,lastRemoteId, description");62 private static final ItemContext defaultContext = Base.createDefaultContext("name", "name,client,lastUsed,lastRemoteId,location,description"); 63 63 private static final Item itemType = Item.USERDEVICE; 64 64 %>
Note: See TracChangeset
for help on using the changeset viewer.