Changeset 21804


Ignore:
Timestamp:
Mar 23, 2013, 4:38:35 PM (11 years ago)
Author:
Eric
Message:

r21769, r21770, r21773, r21787 and r21803 merged from trunk to branch 2.50:
Bug 2877 fixed - Disabling Confirmation of registration main option disables child options (child options remain configured and shown but no force or effect)
Bug 2878 fixed - [Kdays] flag was not translated in confirmation text sent by email to user
Update tr_TR, thanks to : LazBoy
Update da_DK, thanks to : Kaare
Update es_ES, thanks to : crazydark

Location:
extensions/UserAdvManager/branches/2.50
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • extensions/UserAdvManager/branches/2.50/changelog.txt.php

    r21748 r21804  
    411411            Bug 2876 fixed - Make templates compatible HTML 5
    412412            Update it_IT, thanks to : salvatore
     413
     414-- 2.50.6 : Bug 2877 fixed - Disabling Confirmation of registration main option disables child options (child options remain configured and shown but no force or effect)
     415            Bug 2878 fixed - [Kdays] flag was not translated in confirmation text sent by email to user
     416            Update tr_TR, thanks to : LazBoy
     417            Update da_DK, thanks to : Kaare
     418            Update es_ES, thanks to : crazydark
     419           
    413420*/
    414421?>
  • extensions/UserAdvManager/branches/2.50/include/functions.inc.php

    r21746 r21804  
    103103
    104104    // Perform user logout after registration if not validated
    105     if ((isset($conf_UAM['REJECTCONNECT']) and $conf_UAM['REJECTCONNECT'] == 'true') and !UAM_UsrReg_Verif($user['id']) and !is_admin() and !is_webmaster() )
     105    if ((isset($conf_UAM['CONFIRM_MAIL']) and ($conf_UAM['CONFIRM_MAIL']=='true' or $conf_UAM['CONFIRM_MAIL']=='local'))
     106          and (isset($conf_UAM['REJECTCONNECT']) and $conf_UAM['REJECTCONNECT'] == 'true')
     107          and !UAM_UsrReg_Verif($user['id'])
     108          and !is_admin()
     109          and !is_webmaster())
    106110    {
    107111      invalidate_user_cache();
     
    436440  // Performing User validation scheduled tasks
    437441  // ------------------------------------------
    438   if ((isset($conf_UAM['USRAUTO']) and $conf_UAM['USRAUTO'] == 'true'))
     442  if ((isset($conf_UAM['CONFIRM_MAIL']) and $conf_UAM['CONFIRM_MAIL']=='true')
     443        and (isset($conf_UAM['USRAUTO']) and $conf_UAM['USRAUTO'] == 'true'))
    439444  {
    440445    UAM_USR_ScheduledTasks();
     
    442447
    443448  // Avoid login into public galleries until registration confirmation is done
    444   if ((isset($conf_UAM['REJECTCONNECT']) and $conf_UAM['REJECTCONNECT'] == 'false') or ((isset($conf_UAM['REJECTCONNECT']) and $conf_UAM['REJECTCONNECT'] == 'true') and UAM_UsrReg_Verif($user['id'])) or  (!is_admin() and !is_webmaster()))
     449  if ((isset($conf_UAM['REJECTCONNECT']) and $conf_UAM['REJECTCONNECT'] == 'false')
     450        or ((isset($conf_UAM['REJECTCONNECT']) and $conf_UAM['REJECTCONNECT'] == 'true') and UAM_UsrReg_Verif($user['id']))
     451        or (!is_admin() and !is_webmaster()))
    445452  {
    446453    // Performing redirection to profile page on first login
     
    11341141
    11351142  $conf_UAM = unserialize($conf['UserAdvManager']);
     1143  $conf_UAM_ConfirmMail = unserialize($conf['UserAdvManager_ConfirmMail']);
    11361144
    11371145  include_once(PHPWG_ROOT_PATH.'include/functions_mail.inc.php');
  • extensions/UserAdvManager/branches/2.50/language/da_DK/plugin.lang.php

    r18614 r21804  
    335335            </li>
    336336          </ul>';
     337$lang['UAM_group "%s" updated'] = 'For at opnå den bedste ydeevne, er gruppen %s automatisk blevet opsat som standardgruppen. ';
    337338?>
  • extensions/UserAdvManager/branches/2.50/language/es_ES/plugin.lang.php

    r19234 r21804  
    389389$lang['UAM_Change'] = 'Change the Group/Status/Privacy Level of the users who have been confirmed';
    390390$lang['UAM_Customize_messagesandmails'] = 'Personalizar los mensajes y correos';
     391$lang['UAM_group "%s" updated'] = 'Para un mejor rendimiento, el grupo %s se configura automáticamente como el grupo predeterminado.';
    391392?>
  • extensions/UserAdvManager/branches/2.50/language/tr_TR/plugin.lang.php

    r21520 r21804  
    109109$lang['UAM_Default user cannot be pwgreset'] = 'Şifre yenileme varsayılan kullanıcı hesabı için ayarlanamaz!';
    110110$lang['UAM_Default_CfmMail_Custom_Txt2'] = 'Yanlış / Süresi geçmiş doğrulama kodu, hesap zaten başarıyla doğrulanmış';
    111 $lang['UAM_Default_CfmMail_Custom_Txt1'] = '[username] hesap başarıyla doğrulandı';
     111$lang['UAM_Default_CfmMail_Custom_Txt1'] = '[username] hesabı başarıyla doğrulandı!';
    112112$lang['UAM_Default_AdminValidationMail_Subject'] = '[username] - [mygallery] e Kayıt başarıyla doğrulandı.';
    113113$lang['UAM_Default_AdminValidation_Txt'] = 'Merhaba [username]! [mygallery] Galerimize kayıt olduğunuz için teşekkür ederiz.
     
    159159$lang['UAM_Confirm_Status'] = 'Durumlar<br>(Piwigo varsayılanı için ------- olarak bırakın)';
    160160$lang['UAM_Confirm_Level'] = 'Gizlilik seviyesi<br>(Piwigo varsayılanı için ------- olarak bırakın)';
     161$lang['UAM_Expired_Group'] = 'Kullanıcının kayıtlı olduğu <b>grubun</b> geçerliliği sona ermiş durumdadır.<br>';
     162$lang['UAM_Confirm_grpstat_notice'] = 'Dikkat: Grup yada doğrulama durumlarından sadece birini kullanmanız önerilir. Gizlilik seviyesi bir grup ya da durum atama ile bağlantılı olarak kullanılabilir.';
    161163?>
Note: See TracChangeset for help on using the changeset viewer.