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
58259e7b
Commit
58259e7b
authored
Jan 14, 2000
by
terry%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Was sometimes putting a silly timestamp in the change log.
parent
6e55e760
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
process_bug.cgi
process_bug.cgi
+5
-3
No files found.
process_bug.cgi
View file @
58259e7b
...
@@ -584,7 +584,11 @@ The changes made were:
...
@@ -584,7 +584,11 @@ The changes made were:
if
(
$::comma
ne
""
)
{
if
(
$::comma
ne
""
)
{
SendSQL
(
$query
);
SendSQL
(
$query
);
SendSQL
(
"select delta_ts from bugs where bug_id = $id"
);
}
else
{
SendSQL
(
"select now()"
);
}
}
$timestamp
=
FetchOneColumn
();
if
(
defined
$::FORM
{
'comment'
})
{
if
(
defined
$::FORM
{
'comment'
})
{
AppendComment
(
$id
,
$::FORM
{
'who'
},
$::FORM
{
'comment'
});
AppendComment
(
$id
,
$::FORM
{
'who'
},
$::FORM
{
'comment'
});
...
@@ -597,8 +601,6 @@ The changes made were:
...
@@ -597,8 +601,6 @@ The changes made were:
}
}
}
}
SendSQL
(
"select delta_ts from bugs where bug_id = $id"
);
$timestamp
=
FetchOneColumn
();
if
(
defined
$::FORM
{
'dependson'
})
{
if
(
defined
$::FORM
{
'dependson'
})
{
my
$me
=
"blocked"
;
my
$me
=
"blocked"
;
...
@@ -684,7 +686,7 @@ The changes made were:
...
@@ -684,7 +686,7 @@ The changes made were:
$col
=
SqlQuote
(
$col
);
$col
=
SqlQuote
(
$col
);
$old
=
SqlQuote
(
$old
);
$old
=
SqlQuote
(
$old
);
$new
=
SqlQuote
(
$new
);
$new
=
SqlQuote
(
$new
);
my
$q
=
"insert into bugs_activity (bug_id,who,bug_when,field,oldvalue,newvalue) values ($id,$whoid,
$timestamp
,$col,$old,$new)"
;
my
$q
=
"insert into bugs_activity (bug_id,who,bug_when,field,oldvalue,newvalue) values ($id,$whoid,
'$timestamp'
,$col,$old,$new)"
;
# puts "<pre>$q</pre>"
# puts "<pre>$q</pre>"
SendSQL
(
$q
);
SendSQL
(
$q
);
}
}
...
...
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