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…
252 …$res = bugs_add_comment($bug_id, $_POST['in']['commentemail'], $_POST['in']['name'], $ncomment, 'c…
278 if (!$show_bug_info || !verify_bug_passwd($bug_id, bugs_get_hash($pw))) {
285 display_bug_error("The bug #{$bug_id} is not available to public");
356 WHERE id={$bug_id}
374 $res = bugs_add_comment($bug_id, $from, '', $log_comment, 'log');
380 $res = bugs_add_comment($bug_id, $from, '', $ncomment, 'comment');
403 display_bug_error("The bug #{$bug_id} is not available to public");
537 WHERE id = {$bug_id}
557 $res = bugs_add_comment($bug_id, $from, $comment_name, $log_comment, 'log');
563 $res = bugs_add_comment($bug_id, $from, $comment_name, $ncomment, 'comment');
579 mail_bug_updates($bug, $_POST['in'], $from, $ncomment, $edit, $bug_id);
580 redirect("bug.php?id=$bug_id&thanks=$edit");
601 …$show_bug_info ? "{$bug_type} #{$bug_id} :: " . htmlspecialchars($bug['sdesc']) : "You must be log…
602 ($bug_id != 'PREVIEW') ? "
603 …on/rss+xml' title='{$bug['package_name']} Bug #{$bug['id']} - RDF' href='rss/bug.php?id={$bug_id}'>
604 …e='{$bug['package_name']} Bug #{$bug['id']} - RSS 2.0' href='rss/bug.php?id={$bug_id}&format=rss2'>
620 $bug_url = "{$site_method}://{$site_url}{$basedir}/bug.php?id={$bug_id}";
657 …etails" id="number"><a href="bug.php?id=<?php echo $bug_id, '">', $bug_type , '</a>&nbsp;#' , $bug…
719 if ($bug_id !== 'PREVIEW') {
770 <input type="hidden" name="id" value="<?php echo $bug_id?>">
798 <form id="update" action="bug.php?id=<?php echo $bug_id; ?>&amp;edit=<?php echo $edit; ?>" method="…
808 …<a href="bug.php?id=<?php echo $bug_id; ?>&amp;edit=3">add a comment by following this link</a>.<b…
809 …but you forgot your password, <a href="bug-pwd-finder.php?id=<?php echo $bug_id; ?>">you can retri…
834 …You can <a href="bug.php?id=<?php echo $bug_id; ?>&amp;edit=3">add a comment by following this lin…
835 …or if you reported this bug, you can <a href="bug.php?id=<?php echo $bug_id; ?>&amp;edit=2">edit t…
913 <input type="hidden" name="id" value="<?php echo $bug_id ?>">
1001 <a href="patch-add.php?bug_id=<?php echo $bug_id; ?>">Click Here to Submit a Patch</a>
1017 … echo ' &mdash; but make sure to <a href="bug.php?id=' , $bug_id , '">vote on the bug</a>';
1052 <input type="hidden" name="id" value="<?php echo $bug_id; ?>">
1088 if ($show_bug_info && $bug_id != 'PREVIEW' && $bug['status'] !== 'Spam') {
1089 $p = $patchRepository->findAllByBugId($bug_id);
1099 … $obsolete = $obsoletePatchRepository->findObsoletingPatches($bug_id, $name, $revisions[0][0]);
1107 <a href="patch-display.php?bug_id={$bug_id}&amp;patch={$url_name}&amp;revision=latest" {$style}>{$c…
1112 echo "<p><a href='patch-add.php?bug_id={$bug_id}'>Add a Patch</a></p>";
1115 $pulls = $pullRequestRepository->findAllByBugId($bug_id);
1119 echo "<p><a href='gh-pull-add.php?bug_id={$bug_id}'>Add a Pull Request</a></p>";
1124 $bug_comments = is_int($bug_id) ? $commentRepository->findByBugId($bug_id) : [];
1159 if ($bug_id == 'PREVIEW') {
1221 global $bug_id;
1230 'Related To: Bug #'. $bug_id, 'related');
1246 global $edit, $bug_id, $dbh, $is_trusted_developer, $logged_in;
1263 …== 1 && $com_id !== 0 && $is_trusted_developer) ? "<a href='bug.php?id={$bug_id}&amp;edit=1&amp;de…
1272 function delete_comment($bug_id, $com_id) argument
1276 $dbh->prepare("DELETE FROM bugdb_comments WHERE bug='{$bug_id}' AND id='{$com_id}'")->execute();
1281 global $bug_id, $edit;
1287 … $str .= "'><a href='bug.php?id={$bug_id}" . (($num) ? "&amp;edit={$num}" : '') . "'>{$desc}</a>";