diff options
author | Matěj Cepl <mcepl@redhat.com> | 2012-04-11 02:41:20 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2012-04-11 02:45:19 +0200 |
commit | dd0b43442c1642eb6db6fb6a7711eefe7a1119ef (patch) | |
tree | c73ca419ea329ee2fb2e87faf2872a938de90849 /data/tweaks | |
parent | ba9bd8b38bb04421dbc4fa045b02a6f320d817d6 (diff) | |
download | bugzilla-triage-dd0b43442c1642eb6db6fb6a7711eefe7a1119ef.tar.gz |
Make the script bugs.eclipse.org compatible.
Closes #120
Diffstat (limited to 'data/tweaks')
-rw-r--r-- | data/tweaks/bug-page-mod.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/data/tweaks/bug-page-mod.js b/data/tweaks/bug-page-mod.js index 32672b0..d3551a3 100644 --- a/data/tweaks/bug-page-mod.js +++ b/data/tweaks/bug-page-mod.js @@ -170,7 +170,9 @@ function tweakBugzilla(things, cData) { var CheckinComment = new CheckinCommentCtor(); CheckinComment.initialize(AttachmentFlagHandler._interestingFlags); - collectHistory(); + if (!cData.passwordState.withoutPass) { + collectHistory(); + } tbplbotSpamCollapser(); } |