Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
95d743ca
Commit
95d743ca
authored
Dec 04, 1999
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug 20126 -- use more international-friendly (and Y2K happier) date formats.
parent
69b0cad7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
bug_form.pl
bug_form.pl
+3
-3
globals.pl
globals.pl
+1
-1
No files found.
bug_form.pl
View file @
95d743ca
...
...
@@ -145,7 +145,7 @@ select
target_milestone,
qa_contact,
status_whiteboard,
date_format(creation_ts,'
Y-m-d
'),
date_format(creation_ts,'
%Y-%m-%d %H:%i
'),
groupset,
delta_ts,
sum(votes.count)
...
...
@@ -486,8 +486,8 @@ print "
<A HREF=\"long_list.cgi?buglist=$id\">Format For Printing</A>
</B></FONT><BR>
</FORM>
<table><tr><td align=left><B>Description:</B></td>
<td width=\"100%\"> </td>
<td align=right
>Opened:
$bug{'creation_ts'}</td></tr></table>
<table><tr><td align=left><B>Description:</B></td>
<td align=right
width=100%>Opened:
$bug{'creation_ts'}</td></tr></table>
<HR>
<PRE>
"
;
...
...
globals.pl
View file @
95d743ca
...
...
@@ -110,7 +110,7 @@ sub AppendComment {
SendSQL
(
"select long_desc from bugs where bug_id = $bugid"
);
my
$desc
=
FetchOneColumn
();
my
$now
=
time2str
(
"%
D
%H:%M"
,
time
());
my
$now
=
time2str
(
"%
Y-%m-%d
%H:%M"
,
time
());
$desc
.=
"\n\n------- Additional Comments From $who $now -------\n"
;
$desc
.=
$comment
;
SendSQL
(
"update bugs set long_desc="
.
SqlQuote
(
$desc
)
.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment