Lines Matching refs:bug_id
18 $bug_id = !empty($_REQUEST['bug']) ? (int) $_REQUEST['bug'] : 0; variable
19 if (empty($bug_id)) {
20 $bug_id = !empty($_REQUEST['bug_id']) ? (int) $_REQUEST['bug_id'] : 0; variable
23 if (empty($bug_id)) {
32 if (!($buginfo = $bugRepository->findOneById($bug_id))) {
34 display_bug_error("Invalid bug #{$bug_id} selected");
46 $show_bug_info = bugs_has_access($bug_id, $buginfo, $pw, $user_flags);
50 display_bug_error("The bug #{$bug_id} is not available to public");
89 $pulls = $pullRequestRepository->findAllByBugId($bug_id);
99 $newpr = $pullinfo->attach($bug_id, $_POST['repository'], $_POST['pull_id'], $email);
101 $errors = ['Could not attach pull request to Bug #'.$bug_id];
114 $pulls = $pullRequestRepository->findAllByBugId($bug_id);
128 $res = bugs_add_comment($bug_id, $email, $auth_user->name, $text, 'patch');
131 mail_bug_updates($buginfo, $buginfo, $email, $text, 4, $bug_id);
133 $pulls = $pullRequestRepository->findAllByBugId($bug_id);
140 $pulls = $pullRequestRepository->findAllByBugId($bug_id);