Changeset 945


Ignore:
Timestamp:
Nov 19, 2005, 5:05:26 PM (18 years ago)
Author:
plg
Message:
  • bug 212 fixed: during registration process, different password and password confirmation triggered no error.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/branch-1_5/register.php

    r902 r945  
    3737    array_push($errors, $lang['reg_err_pass']);
    3838  }
    39  
    40   $errors =
    41     array_merge(
    42       $errors,
    43       register_user($_POST['login'],
    44                     $_POST['password'],
    45                     $_POST['mail_address'])
    46       );
     39  else
     40  {
     41    $errors =
     42      register_user(
     43        $_POST['login'],
     44        $_POST['password'],
     45        $_POST['mail_address']
     46        );
     47  }
    4748 
    4849  if (count($errors) == 0)
Note: See TracChangeset for help on using the changeset viewer.