Ignore:
Timestamp:
11/05/07 21:36:09 (5 years ago)
Author:
hverton
Message:

Added a feature to handle invalid member email addresses. Once a user has been marked to have an invalid address, a login will redirect to the edit_profile module and the user will be prompted to correct the address. If this doesn't happen within 90 days, the user account will be deactivated and will disappear from the member lists. The account is not deleted or disabled, a login will reactivate the account again (and the 90 day countdown timer will start again).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/includes/templates/main.pm.post.tpl

    r954 r1060  
    6666                {if !$recipient_given} 
    6767                    <hr /> 
    68                     <select id='user_ids' name='user_ids' class='textbox'> 
    6968                    {section name=id loop=$user_list} 
     69                        {if $smarty.section.id.first} 
     70                        <select id='user_ids' name='user_ids' class='textbox'> 
     71                        {/if} 
    7072                        <option value='{$user_list[id].user_id}'>{$user_list[id].user_name}</option> 
     73                        {if $smarty.section.id.last} 
     74                        </select> 
     75                        <input type='submit' name='select_user' value='{$locale.468}' class='button' onclick="AddUser();return false;" /> 
     76                        {if $allow_sendtoall}&nbsp; - &nbsp;{/if} 
     77                        {/if} 
    7178                    {/section} 
    72                     </select> 
    73                     <input type='submit' name='select_user' value='{$locale.468}' class='button' onclick="AddUser();return false;" /> 
    7479                    {if $allow_sendtoall} 
    75                         &nbsp; - &nbsp; 
    76                         <select id='group_ids' name='group_ids' class='textbox'> 
    7780                        {section name=id loop=$user_groups} 
     81                            {if $smarty.section.id.first} 
     82                            <select id='group_ids' name='group_ids' class='textbox'> 
     83                            {/if} 
    7884                            <option value='{$user_groups[id].0}'>{$user_groups[id].1}</option> 
     85                            {if $smarty.section.id.last} 
     86                            </select> 
     87                            <input type='submit' name='select_group' value='{$locale.469}' class='button' onclick="AddGroup();return false;" /> 
     88                            {/if} 
    7989                        {/section} 
    80                         </select> 
    81                         <input type='submit' name='select_group' value='{$locale.469}' class='button' onclick="AddGroup();return false;" /> 
    8290                    {/if} 
    8391                {/if} 
     
    190198            <td class='tbl1'> 
    191199                <input type='file' name='attach' class='textbox' style='width:200px;' /> 
    192                 <input type='submit' name='upload' value='{$locale.473}' class='button' /> 
    193200                <br /><br /> 
    194201                <span class='small2'>{ssprintf format=$locale.472 var1=$attachmax var2=$attachtypes}</span> 
     
    197204                <br /> 
    198205                <textarea name='attach_comment' cols='50' rows='2' class='textbox'>{$comments}</textarea> 
     206                <br /> 
     207                <input type='submit' name='upload' value='{$locale.473}' class='button' /> 
    199208            </td> 
    200209        </tr> 
Note: See TracChangeset for help on using the changeset viewer.