Ignore:
Timestamp:
30 Jan 2015, 07:54:45 (10 years ago)
Author:
Henrik Bettermann
Message:

Use TextLine? field for regular user email addresses.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.ikoba/trunk/src/waeup/ikoba/interfaces.py

    r12443 r12522  
    383383    """
    384384
    385     email_from = schema.ASCIILine(
     385    email_from = schema.TextLine(
    386386        title = _(u'Email Address:'),
    387387        default = None,
     
    390390        )
    391391
    392     email_to = schema.ASCIILine(
     392    email_to = schema.TextLine(
    393393        title = _(u'Email to:'),
    394394        default = None,
     
    500500        required = False,)
    501501
    502     email = schema.ASCIILine(
     502    email = schema.TextLine(
    503503        title = _(u'Email Address'),
    504504        default = None,
     
    590590        )
    591591
    592     email_admin = schema.ASCIILine(
     592    email_admin = schema.TextLine(
    593593        title = _(u'Email Address of Administrator'),
    594         default = 'contact@waeup.org',
     594        default = u'contact@waeup.org',
    595595        required = True,
    596596        constraint=validate_email,
Note: See TracChangeset for help on using the changeset viewer.