summaryrefslogtreecommitdiffstats
path: root/bug_form.pl
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-08-13 17:01:58 +0200
committerbbaetz%student.usyd.edu.au <>2002-08-13 17:01:58 +0200
commitf9e05e2778aa373cb29c2cc49a470b184981f24d (patch)
treef77a750531cc9d7367f1204261b4c08fd8f490a7 /bug_form.pl
parent9b22dcde525cb7e0b0b88b80d627e7e1d3dd5e6c (diff)
downloadbugzilla-f9e05e2778aa373cb29c2cc49a470b184981f24d.tar.gz
bugzilla-f9e05e2778aa373cb29c2cc49a470b184981f24d.tar.xz
Bug 24823 - show the last modified date at the top of show_bug
Patch by vkissoyan@yahoo.com (Vaskin Kissoyan) r=bbaetz x2
Diffstat (limited to 'bug_form.pl')
-rw-r--r--bug_form.pl15
1 files changed, 13 insertions, 2 deletions
diff --git a/bug_form.pl b/bug_form.pl
index fb6a60112..b04208bdf 100644
--- a/bug_form.pl
+++ b/bug_form.pl
@@ -19,6 +19,7 @@
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Dave Miller <justdave@syndicomm.com>
+# Vaskin Kissoyan <vkissoyan@yahoo.com>
use diagnostics;
use strict;
@@ -83,7 +84,7 @@ sub show_bug {
bug_file_loc, short_desc, target_milestone,
qa_contact, status_whiteboard,
date_format(creation_ts,'%Y-%m-%d %H:%i'),
- groupset, delta_ts, sum(votes.count)
+ groupset, delta_ts, sum(votes.count), delta_ts calc_disp_date
FROM bugs LEFT JOIN votes USING(bug_id), products, components
WHERE bugs.bug_id = $id
AND bugs.product_id = products.id
@@ -99,15 +100,25 @@ sub show_bug {
}
my $value;
+ my $disp_date;
my @row = FetchSQLData();
foreach my $field ("bug_id", "alias", "product", "version", "rep_platform",
"op_sys", "bug_status", "resolution", "priority",
"bug_severity", "component", "assigned_to", "reporter",
"bug_file_loc", "short_desc", "target_milestone",
"qa_contact", "status_whiteboard", "creation_ts",
- "groupset", "delta_ts", "votes")
+ "groupset", "delta_ts", "votes","calc_disp_date")
{
$value = shift(@row);
+ if ($field eq "calc_disp_date") {
+ # Convert MySQL timestamp (_ts) to datetime format(%Y-%m-%d %H:%i)
+ $disp_date = substr($value,0,4) . '-';
+ $disp_date .= substr($value,4,2) . '-';
+ $disp_date .= substr($value,6,2) . ' ';
+ $disp_date .= substr($value,8,2) . ':';
+ $disp_date .= substr($value,10,2);
+ $value = $disp_date;
+ }
$bug{$field} = defined($value) ? $value : "";
}