Menu

[r11]: / general / sendpassword.php  Maximize  Restore  History

Download this file

118 lines (93 with data), 3.3 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/*
** Application name: phpCollab
** Last Edit page: 2003-10-23
** Path by root: ../general/sendpassword.php
** Authors: Ceam / Fullo
**
** =============================================================================
**
** phpCollab - Project Managment
**
** -----------------------------------------------------------------------------
** Please refer to license, copyright, and credits in README.TXT
**
** -----------------------------------------------------------------------------
** FILE: sendpassword.php
**
** DESC: Screen: send password if lost
**
** HISTORY:
** 2006-07-28 - xhtml fixes
** 2003-10-23 - added new document info
** 09/04/2006 - fixed secunia bug n. SA19449
** -----------------------------------------------------------------------------
** TO-DO:
**
**
** =============================================================================
*/
$checkSession = "false";
include_once('../includes/library.php');
//security fix
$loginForm = htmlspecialchars(strip_tags($loginForm),ENT_QUOTES);
$pw = htmlspecialchars(strip_tags($pw),ENT_QUOTES);
//test send query
if ($action == "send")
{
$tmpquery = "WHERE mem.login = '$loginForm'";
$userDetail = new request();
$userDetail->openMembers($tmpquery);
$comptUserDetail = count ($userDetail->mem_id);
//test if user exists
if ($comptUserDetail == "0") {
$error = $strings["no_login"];
//test if email of user exists
} else if ($userDetail->mem_email_work[0] != "") {
password_generator();
$pw = get_password($pass_g);
$tmpquery = "UPDATE ".$tableCollab["members"]." SET password='$pw' WHERE login = '$loginForm'";
connectSql("$tmpquery");
$body = $strings["user_name"]." : ".$userDetail->mem_login[0]."\n\n".$strings["password"]." : $pass_g";
$mail = new notification();
$mail->getUserinfo("1","from");
$subject = $setTitle . " ".$strings["password"];
$mail->Subject = $subject;
$mail->Priority = "1";
$mail->Body = $body;
$mail->AddAddress($userDetail->mem_email_work[0], $userDetail->mem_name[0]);
$mail->Send();
$mail->ClearAddresses();
$msg = 'email_pwd';
} else {
$error = $strings["no_email"];
}
$send = "on";
}
$notLogged = "true";
$bodyCommand = "onLoad=\"document.sendForm.loginForm.focus();\"";
include('../themes/'.THEME.'/header.php');
$blockPage = new block();
$blockPage->openBreadcrumbs();
$blockPage->itemBreadcrumbs("&nbsp;");
$blockPage->closeBreadcrumbs();
if ($msg != "") {
include('../includes/messages.php');
$blockPage->messagebox($msgLabel);
}
$block1 = new block();
$block1->form = "send";
$block1->openForm("../general/sendpassword.php?action=send&".session_name()."=".session_id());
if ($error != "") {
$block1->headingError($strings["errors"]);
$block1->contentError($error);
}
$block1->heading($setTitle . " : ".$strings["password"]);
$block1->openContent();
$block1->contentTitle($strings["enter_login"]);
$block1->contentRow("* ".$strings["user_name"],"<input style='width: 125px' maxlength='16' size='16' value='$loginForm' type='text' name='loginForm' />");
$block1->contentRow("","<input type='submit' name='send' value='".$strings['send']."' />");
$block1->closeContent();
$block1->closeForm();
include('../themes/'.THEME.'/footer.php');
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.