Lines Matching refs:bug_id

1047  * @param int $bug_id    the bug's id number
1052 function get_old_comments($bug_id, $all = 0) argument
1067 ")->execute([$bug_id]);
1083 … $res = $dbh->prepare("SELECT ts1, email, ldesc FROM bugdb WHERE id = ?")->execute([$bug_id]);
1113 {$site_method}://{$site_url}{$basedir}/bug.php?id={$bug_id}
1228 function get_package_mail($package_name, $bug_id = false, $bug_type = 'Bug') argument
1286 if ($bug_id) {
1287 $bug_id = (int) $bug_id;
1289 …$assigned = $dbh->prepare("SELECT assign FROM bugdb WHERE id= ? ")->execute([$bug_id])->fetch(\PDO…
1296 …$bcc = $dbh->prepare("SELECT email FROM bugdb_subscribe WHERE bug_id=?")->execute([$bug_id])->fetc…
1358 function unsubscribe_hash($bug_id, $email) argument
1363 $hash = crypt($email . $bug_id, $now);
1372 $affected = $dbh->prepare($query, null, null)->execute([$hash, $bug_id, $email]);
1381 {$siteBig} bug #{$bug_id}
1384 {$site_method}://{$site_url}{$basedir}/bug.php?id={$bug_id}
1387 {$site_method}://{$site_url}{$basedir}/bug.php?id={$bug_id}&unsubscribe=1&t={$hash}
1394 "[$siteBig-BUG-unsubscribe] #{$bug_id}",
1397 "X-PHP-Bug: {$bug_id}\r\n".
1398 "In-Reply-To: <bug-{$bug_id}@{$site_url}>"
1412 function unsubscribe($bug_id, $hash) argument
1416 $bug_id = (int) $bug_id;
1424 $sub = $dbh->prepare($query)->execute([$bug_id, $hash])->fetch();
1441 $dbh->prepare($query)->execute([$bug_id, $hash, $sub['email']]);
1448 function bugs_add_comment($bug_id, $from, $from_name, $comment, $type = 'comment') argument
1456 $bug_id, $from, $from_name, $comment, $type
1463 function bugs_status_change($bug_id, $new_status) argument
1469 ")->execute([$new_status, $bug_id]);
1478 function verify_bug_passwd($bug_id, $passwd) argument
1482 …h->prepare('SELECT 1 FROM bugdb WHERE id = ? AND passwd = ?')->execute([$bug_id, $passwd])->fetch(…