Lines Matching refs:bug_id

26     $bug_id = 'PREVIEW';  variable
41 $bug_id = (int) $_REQUEST['id']; variable
64 redirect("bug.php?id={$bug_id}");
66 unsubscribe($bug_id, $hash);
95 unsubscribe_hash($bug_id, $email);
100 …dbh->prepare('REPLACE INTO bugdb_subscribe SET bug_id = ?, email = ?')->execute([$bug_id, $email]);
103 redirect("bug.php?id={$bug_id}&thanks={$thanks}");
119 delete_comment($bug_id, $delete_comment);
122 redirect("bug.php?id=$bug_id&edit=1$addon");
135 $bug = $bugRepository->findOneById($bug_id);
149 display_bug_error("No such bug #{$bug_id}");
154 $show_bug_info = bugs_has_access($bug_id, $bug, $pw, $user_flags);
155 if ($edit == 2 && !$show_bug_info && $pw && verify_bug_passwd($bug_id, bugs_get_hash($pw))) {
163 display_bug_error("You're not allowed to add a comment to bug #{$bug_id}");
205 …display_bug_error("The bug #{$bug_id} is not available to public, if you are the original reporter…
251 …$res = bugs_add_comment($bug_id, $_POST['in']['commentemail'], $_POST['in']['name'], $ncomment, 'c…
277 if (!$show_bug_info || !verify_bug_passwd($bug_id, bugs_get_hash($pw))) {
284 display_bug_error("The bug #{$bug_id} is not available to public");
355 WHERE id={$bug_id}
373 $res = bugs_add_comment($bug_id, $from, '', $log_comment, 'log');
379 $res = bugs_add_comment($bug_id, $from, '', $ncomment, 'comment');
402 display_bug_error("The bug #{$bug_id} is not available to public");
536 WHERE id = {$bug_id}
556 $res = bugs_add_comment($bug_id, $from, $comment_name, $log_comment, 'log');
562 $res = bugs_add_comment($bug_id, $from, $comment_name, $ncomment, 'comment');
578 mail_bug_updates($bug, $_POST['in'], $from, $ncomment, $edit, $bug_id);
579 redirect("bug.php?id=$bug_id&thanks=$edit");
600 …$show_bug_info ? "{$bug_type} #{$bug_id} :: " . htmlspecialchars($bug['sdesc']) : "You must be log…
601 ($bug_id != 'PREVIEW') ? "
602 …on/rss+xml' title='{$bug['package_name']} Bug #{$bug['id']} - RDF' href='rss/bug.php?id={$bug_id}'>
603 …e='{$bug['package_name']} Bug #{$bug['id']} - RSS 2.0' href='rss/bug.php?id={$bug_id}&format=rss2'>
619 $bug_url = "{$site_method}://{$site_url}{$basedir}/bug.php?id={$bug_id}";
656 …etails" id="number"><a href="bug.php?id=<?php echo $bug_id, '">', $bug_type , '</a>&nbsp;#' , $bug…
718 if ($bug_id !== 'PREVIEW') {
768 <input type="hidden" name="id" value="<?php echo $bug_id?>">
796 <form id="update" action="bug.php?id=<?php echo $bug_id; ?>&amp;edit=<?php echo $edit; ?>" method="…
805 …If you forgot your password, <a href="bug-pwd-finder.php?id=<?php echo $bug_id; ?>">you can retrie…
830 …If you reported this bug, you can <a href="bug.php?id=<?php echo $bug_id; ?>&amp;edit=2">edit this…
908 <input type="hidden" name="id" value="<?php echo $bug_id ?>">
996 <a href="patch-add.php?bug_id=<?php echo $bug_id; ?>">Click Here to Submit a Patch</a>
1012 … echo ' &mdash; but make sure to <a href="bug.php?id=' , $bug_id , '">vote on the bug</a>';
1047 <input type="hidden" name="id" value="<?php echo $bug_id; ?>">
1083 if ($show_bug_info && $bug_id != 'PREVIEW' && $bug['status'] !== 'Spam') {
1084 $p = $patchRepository->findAllByBugId($bug_id);
1094 … $obsolete = $obsoletePatchRepository->findObsoletingPatches($bug_id, $name, $revisions[0][0]);
1102 <a href="patch-display.php?bug_id={$bug_id}&amp;patch={$url_name}&amp;revision=latest" {$style}>{$c…
1108 echo "<p><a href='patch-add.php?bug_id={$bug_id}'>Add a Patch</a></p>";
1112 $pulls = $pullRequestRepository->findAllByBugId($bug_id);
1117 echo "<p><a href='gh-pull-add.php?bug_id={$bug_id}'>Add a Pull Request</a></p>";
1123 $bug_comments = is_int($bug_id) ? $commentRepository->findByBugId($bug_id) : [];
1158 if ($bug_id == 'PREVIEW') {
1220 global $bug_id;
1229 'Related To: Bug #'. $bug_id, 'related');
1245 global $edit, $bug_id, $dbh, $is_trusted_developer, $logged_in;
1262 …== 1 && $com_id !== 0 && $is_trusted_developer) ? "<a href='bug.php?id={$bug_id}&amp;edit=1&amp;de…
1271 function delete_comment($bug_id, $com_id) argument
1275 $dbh->prepare("DELETE FROM bugdb_comments WHERE bug='{$bug_id}' AND id='{$com_id}'")->execute();
1280 global $bug_id, $edit;
1286 … $str .= "'><a href='bug.php?id={$bug_id}" . (($num) ? "&amp;edit={$num}" : '') . "'>{$desc}</a>";