Lines Matching refs:bug_id
17 $bug_id = isset($_REQUEST['id']) ? (int) $_REQUEST['id'] : 0; variable
18 $bug_id = $bug_id ? $bug_id : ''; variable
20 if (isset($_POST['captcha']) && $bug_id != '') {
29 $query = "SELECT email, passwd FROM bugdb WHERE id = '{$bug_id}'";
35 $errors[] = "Invalid bug id provided: #{$bug_id}";
38 $errors[] = "No password found for #$bug_id bug report, sorry.";
46 ')->execute([bugs_get_hash($new_passwd), $bug_id]);
49 "Password for {$siteBig} bug report #{$bug_id}",
50 … "The password for {$siteBig} bug report #{$bug_id} has been set to: {$new_passwd}",
54 …$success = "The password for bug report #{$bug_id} has been sent to the address associated with th…
92 <p><b>Bug Report ID:</b> #<input type="text" size="20" name="id" value="<?php echo $bug_id; ?>">