Changeset 4008
- Timestamp:
- Oct 9, 2009, 5:56:21 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/user_list.php
r3935 r4008 188 188 if ($conf['double_password_type_in_admin'] == true) 189 189 { 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 190 if (isset($_POST['submit_add'])) 191 { 192 if(empty($_POST['password'])) 193 { 194 array_push($page['errors'], l10n('Password is missing')); 195 } 196 else if(empty($_POST['password_conf'])) 197 { 198 array_push($page['errors'], l10n('Password confirmation is missing')); 199 } 200 else if(empty($_POST['email'])) 201 { 202 array_push($page['errors'], l10n('Email address is missing')); 203 } 204 else if ($_POST['password'] != $_POST['password_conf']) 205 { 206 array_push($page['errors'], l10n('Password confirmation error')); 207 } 208 else 209 { 210 $page['errors'] = register_user( 211 $_POST['login'], $_POST['password'], $_POST['email'], false); 212 213 if (count($page['errors']) == 0) 214 { 215 array_push( 216 $page['infos'], 217 sprintf( 218 l10n('user "%s" added'), 219 $_POST['login'] 220 ) 221 ); 222 } 223 } 224 } 225 225 } 226 226 else if ($conf['double_password_type_in_admin'] == false) 227 227 { 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 228 if (isset($_POST['submit_add'])) 229 { 230 $page['errors'] = register_user( 231 $_POST['login'], $_POST['password'], $_POST['email'], false); 232 233 if (count($page['errors']) == 0) 234 { 235 array_push( 236 $page['infos'], 237 sprintf( 238 l10n('user "%s" added'), 239 $_POST['login'] 240 ) 241 ); 242 } 243 243 } 244 244 }
Note: See TracChangeset
for help on using the changeset viewer.