Ignore:
Timestamp:
Mar 30, 2012, 9:38:52 PM (12 years ago)
Author:
Eric
Message:

Bug 2602 fixed - Sql error when Confirmation by admin is set
en_UK reference translation spellchecking

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/UserAdvManager/trunk/include/functions.inc.php

    r13528 r13822  
    100100  if ($register_user['username'] != "16" and $register_user['username'] != "18")
    101101  {
     102    $passwd = (isset($_POST['password'])) ? $_POST['password'] : '';
     103   
    102104    if ((isset($conf_UAM[0]) and $conf_UAM[0] == 'true') and (isset($conf_UAM[1]) and $conf_UAM[1] == 'local'))
    103105    {
    104106      // This is to send an information email and set user to "waiting" group or status until admin validation
    105107      // -----------------------------------------------------------------------------------------------------
    106       $passwd = (isset($_POST['password'])) ? $_POST['password'] : '';
    107108      SendMail2User(1, $register_user['id'], $register_user['username'], $passwd, $register_user['email'], false);
    108109      SetPermission($register_user['id']);// Set to "waiting" group or status until admin validation
     
    118119      // This is to send an information email without validation key
    119120      // -----------------------------------------------------------
    120       $passwd = (isset($_POST['password'])) ? $_POST['password'] : '';
    121121      SendMail2User(1, $register_user['id'], $register_user['username'], $passwd, $register_user['email'], false);
    122122    }
     
    127127      if (is_admin() and isset($conf_UAM[19]) and $conf_UAM[19] == 'true')
    128128      {
    129         $passwd = (isset($_POST['password'])) ? $_POST['password'] : '';
    130129        SendMail2User(1, $register_user['id'], $register_user['username'], $passwd, $register_user['email'], true);
    131130      }
    132131      elseif (is_admin() and isset($conf_UAM[19]) and $conf_UAM[19] == 'false')
    133132      {
    134         $passwd = (isset($_POST['password'])) ? $_POST['password'] : '';
    135133        SendMail2User(1, $register_user['id'], $register_user['username'], $passwd, $register_user['email'], false);
    136134      }
    137135      elseif (!is_admin())
    138136      {
    139         $passwd = (isset($_POST['password'])) ? $_POST['password'] : '';
    140137        SendMail2User(1, $register_user['id'], $register_user['username'], $passwd, $register_user['email'], true);
    141138      }
     
    15981595  }
    15991596
    1600   if (!is_admin() and $conf_UAM[2] <> -1) // Set privacy level
     1597  if (!is_admin() and $conf_UAM[35] <> -1) // Set privacy level
    16011598  {
    16021599    $query = "
     
    16041601  (user_id, level)
    16051602VALUES
    1606   ('".$user_id."', '".$conf_UAM[level]."')
     1603  ('".$user_id."', '".$conf_UAM[35]."')
    16071604;";
    16081605    pwg_query($query);
Note: See TracChangeset for help on using the changeset viewer.