Searched refs:ncomment (Results 1 – 4 of 4) sorted by relevance
/web-bugs/www/ |
H A D | fix.php | 47 $ncomment = isset($_POST['ncomment']) ? trim($_POST['ncomment']) : ''; variable 53 …SOLVE_REASONS[$reason]) && $RESOLVE_REASONS[$reason]['status'] == 'Not a bug' && $ncomment == '') { 97 …" rows="8" name="ncomment" wrap="physical"><?php echo htmlspecialchars($ncomment); ?></textarea></… 114 $ncomment = $qftext . (!empty($ncomment) ? "\n\n".$ncomment : ""); variable 161 if (!empty($ncomment)) { 162 … $result = bugs_add_comment($bug_id, $auth_user->email, $auth_user->name, $ncomment, 'comment'); 166 mail_bug_updates($bug, $in, $auth_user->email, $ncomment);
|
H A D | bug.php | 220 if (!$ncomment) { 298 if (!$ncomment) { 318 if ($ncomment && $message = is_spam($ncomment)) { 378 if (!empty($ncomment)) { 412 $ncomment = ''; variable 418 if ($ncomment && $message = is_spam($ncomment)) { 476 $ncomment = "$reason\n\n$ncomment"; variable 480 $ncomment = "$reason\n\n$ncomment"; variable 484 $ncomment = "$reason\n\n$ncomment"; variable 572 $ncomment = ''; variable [all …]
|
H A D | rpc.php | 49 $ncomment = htmlspecialchars(trim($_POST['ncomment'])); variable 54 bugs_add_comment($bug_id, $from, $user, $ncomment, 'svn'); 77 mail_bug_updates($bug, $in, $from, $ncomment, 1, $bug_id);
|
/web-bugs/include/ |
H A D | functions.php | 818 function mail_bug_updates($bug, $in, $from, $ncomment, $edit = 1, $id = false) argument 899 if ($ncomment) { 901 …$ncomment = preg_replace_callback('#<div class="changeset">(.*)</div>#sU', function ($m) { return … 903 $text[] = " New Comment:\n\n{$ncomment}"; 906 $old_comments = get_old_comments($bug['id'], empty($ncomment)); 944 if (empty($in['status']) || $in['status'] != $bug['status'] || $ncomment != '' ||
|
Completed in 14 milliseconds