Ignore:
Timestamp:
Dec 2, 2011, 11:37:38 PM (12 years ago)
Author:
Eric
Message:

Bug 2524 fixed - The "Information email" option has been moved to "misc options" section of admin panel
Bug 2525 fixed - "Obligatory email for registrations" option is checked before using the email exclusion option
Bug 2526 fixed - "PWG stuff" option has been moved one step higher in admin panel
Bug 2527 fixed - "Confirmation for admins" option has been moved one step higher in admin panel
Bug 2528 fixed - The word "validation" for "registration validation" has been replaced by "confirmation"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/UserAdvManager/trunk/admin/UAM_admin.php

    r12661 r12689  
    3636$UAM_Illegal_Flag_Error2 = false;
    3737$UAM_Illegal_Flag_Error3 = false;
     38$UAM_Email_Mandatory_Check = false;
    3839
    3940$dump_download = '';
     
    516517                        )
    517518          );
     519  }
     520
     521  // Check if emails are mandatory for registrations (needed for email exclusion option)
     522  // -----------------------------------------------------------------------------------
     523  if (!$conf['obligatory_user_mail_address'])
     524  {
     525    $UAM_Email_Mandatory_Check = true;
    518526  }
    519527
     
    605613    'UAM_ERROR_REPORTS3'             => $UAM_Illegal_Flag_Error2,
    606614    'UAM_ERROR_REPORTS4'             => $UAM_Illegal_Flag_Error3,
     615    'UAM_EMAIL_MANDATORY'            => $UAM_Email_Mandatory_Check,
    607616                'UAM_CONFIRMMAIL_TIMEOUT_TRUE'   => $conf_UAM_ConfirmMail[0]=='true' ?  'checked="checked"' : '' ,
    608617                'UAM_CONFIRMMAIL_TIMEOUT_FALSE'  => $conf_UAM_ConfirmMail[0]=='false' ?  'checked="checked"' : '' ,
Note: See TracChangeset for help on using the changeset viewer.