Changeset 220

Show
Ignore:
Timestamp:
01/31/06 07:28:54
Author:
chervol
Message:

cleaning comments

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • qPloneComments/trunk/skins/qplonecomments/prefs_comments_setup.cpy

    r219 r220  
    2121for id,type in property_maps: 
    2222    if type == 'boolean': 
    23         # For boolean type in REQUEST present ONLY CHECKED fields 
    24         # PECULIARITY: when field uncheck - it disappear from the REQUEST 
    2523        if id in request_ids: 
    2624            kw[id] = True 
    2725        else: 
    2826            kw[id] = False 
    29  
    30         # Switch anonymouse commenting 
    3127        if id == 'Enable_Anonymous_Commenting': 
    3228            allow = False 
  • qPloneComments/trunk/skins/qplonecomments/validate_talkback.vpy

    r219 r220  
    2626        req = context.REQUEST 
    2727        if not (req.form.has_key('Creator') and not req.form['Creator'] == ""): 
    28             state.setError('Creator', 'Please submit a Name.', 'name_required') 
     28            state.setError('Creator', 'Please enter your Name.', 'name_required') 
    2929 
    3030if state.getErrors():