diff --git a/mozilla/webtools/bugzilla/.bzrrev b/mozilla/webtools/bugzilla/.bzrrev index 4ee3a5e1cae..fef6ac9e8b2 100644 --- a/mozilla/webtools/bugzilla/.bzrrev +++ b/mozilla/webtools/bugzilla/.bzrrev @@ -1 +1 @@ -8968 \ No newline at end of file +8969 \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/.gitrev b/mozilla/webtools/bugzilla/.gitrev index d14da9b370e..dee895f4b57 100644 --- a/mozilla/webtools/bugzilla/.gitrev +++ b/mozilla/webtools/bugzilla/.gitrev @@ -1 +1 @@ -fd518e1e24aa4b1164634ef5c432621f2c6bbb64 \ No newline at end of file +cf74a17e34f66ecdeb092f7b020bed95821a2492 \ No newline at end of file diff --git a/mozilla/webtools/bugzilla/template/en/default/attachment/edit.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/attachment/edit.html.tmpl index 1ab30853cdd..87ae525e7d2 100644 --- a/mozilla/webtools/bugzilla/template/en/default/attachment/edit.html.tmpl +++ b/mozilla/webtools/bugzilla/template/en/default/attachment/edit.html.tmpl @@ -28,7 +28,7 @@ %] [%# No need to display the Diff button and iframe if the attachment is not a patch. %] -[% use_patchviewer = (feature_enabled('patch_viewer') && attachment.ispatch) %] +[% use_patchviewer = (feature_enabled('patch_viewer') && attachment.ispatch) ? 1 : 0 %] [% can_edit = attachment.validate_can_edit %] [% editable_or_hide = can_edit ? "" : " bz_hidden_option" %] @@ -202,30 +202,33 @@ View the attachment on a separate page. [% END %] + + [% IF use_patchviewer %] + + [% END %] + + [% IF user.id %] + + + + [% END %] + + [% IF use_patchviewer %] + + [% END %] + + [% ELSE %] diff --git a/mozilla/webtools/bugzilla/template/en/default/bug/create/create-guided.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/bug/create/create-guided.html.tmpl index 5cc9df64fd6..4c087c6379b 100644 --- a/mozilla/webtools/bugzilla/template/en/default/bug/create/create-guided.html.tmpl +++ b/mozilla/webtools/bugzilla/template/en/default/bug/create/create-guided.html.tmpl @@ -29,13 +29,12 @@ var descriptions = [ ]; function PutDescription() { - if ((document.getElementById) && (document.body.innerHTML)) { - var componentIndex = document.getElementById('component').selectedIndex; - if (componentIndex != -1) { - var description = document.getElementById('description'); - description.innerHTML = descriptions[componentIndex]; - } - } + var description = document.getElementById('description'); + var componentIndex = document.getElementById('component').selectedIndex; + YAHOO.util.Dom.removeClass("description", "bz_default_hidden"); + if (componentIndex != -1) { + description.innerHTML = descriptions[componentIndex]; + } } @@ -130,12 +129,8 @@ function PutDescription() { [% END %] -
diff --git a/mozilla/webtools/bugzilla/template/en/default/global/code-error.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/global/code-error.html.tmpl index 8a0b459b3f6..1c3422fa8a5 100644 --- a/mozilla/webtools/bugzilla/template/en/default/global/code-error.html.tmpl +++ b/mozilla/webtools/bugzilla/template/en/default/global/code-error.html.tmpl @@ -430,15 +430,9 @@ with details of what you were doing at the time this message appeared.
- - - ++ URL: [% Bugzilla.cgi.self_url FILTER html %] +
diff --git a/mozilla/webtools/bugzilla/template/en/default/list/quips.html.tmpl b/mozilla/webtools/bugzilla/template/en/default/list/quips.html.tmpl index 8fb89af7ca8..e928cf0c508 100644 --- a/mozilla/webtools/bugzilla/template/en/default/list/quips.html.tmpl +++ b/mozilla/webtools/bugzilla/template/en/default/list/quips.html.tmpl @@ -107,7 +107,15 @@ [% END %] - - - + YAHOO.util.Dom.removeClass("check_all", "bz_default_hidden"); + YAHOO.util.Dom.removeClass("uncheck_all", "bz_default_hidden"); + //--> +
[% END %]