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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ivan Ivlev
bugzilla
Commits
39e31cfe
Commit
39e31cfe
authored
Mar 08, 2000
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch by Peter Schweiger <schweiger.peter@litef.de> -- date formatting
string wasn't working with modern MySQL engines.
parent
a1f34102
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
bug_form.pl
bug_form.pl
+1
-1
buglist.cgi
buglist.cgi
+2
-2
No files found.
bug_form.pl
View file @
39e31cfe
...
...
@@ -146,7 +146,7 @@ select
target_milestone,
qa_contact,
status_whiteboard,
date_format(creation_ts,'
Y-m-d H:
i'),
date_format(creation_ts,'
%Y-%m-%d %H:%
i'),
groupset,
delta_ts,
sum(votes.count)
...
...
buglist.cgi
View file @
39e31cfe
...
...
@@ -769,9 +769,9 @@ sub DefCol {
$::needquote
{
$name
}
=
$q
;
}
DefCol
(
"opendate"
,
"date_format(bugs.creation_ts,'
Y-m-
d')"
,
"Opened"
,
DefCol
(
"opendate"
,
"date_format(bugs.creation_ts,'
%Y-%m-%
d')"
,
"Opened"
,
"bugs.creation_ts"
);
DefCol
(
"changeddate"
,
"date_format(bugs.delta_ts,'
Y-m-
d')"
,
"Changed"
,
DefCol
(
"changeddate"
,
"date_format(bugs.delta_ts,'
%Y-%m-%
d')"
,
"Changed"
,
"bugs.delta_ts"
);
DefCol
(
"severity"
,
"substring(bugs.bug_severity, 1, 3)"
,
"Sev"
,
"bugs.bug_severity"
);
...
...
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