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
b25ce729
Commit
b25ce729
authored
Jun 21, 2010
by
Matt McHenry
Committed by
Max Kanat-Alexander
Jun 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug 398473: User preference for the position of the comment box
r=mkanat, a=mkanat
parent
e3fd496e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
Install.pm
Bugzilla/Install.pm
+3
-0
edit.html.tmpl
template/en/default/bug/edit.html.tmpl
+8
-1
setting-descs.none.tmpl
template/en/default/global/setting-descs.none.tmpl
+3
-0
No files found.
Bugzilla/Install.pm
View file @
b25ce729
...
...
@@ -65,6 +65,9 @@ sub SETTINGS {
# 2007-07-02 altlist@gmail.com -- Bug 225731
quote_replies
=>
{
options
=>
[
'quoted_reply'
,
'simple_reply'
,
'off'
],
default
=>
"quoted_reply"
},
# 2009-02-01 mozilla@matt.mchenryfamily.org -- Bug 398473
comment_box_position
=>
{
options
=>
[
'before_comments'
,
'after_comments'
],
default
=>
'before_comments'
},
# 2008-08-27 LpSolit@gmail.com -- Bug 182238
timezone
=>
{
subclass
=>
'Timezone'
,
default
=>
'local'
},
}
...
...
template/en/default/bug/edit.html.tmpl
View file @
b25ce729
...
...
@@ -218,7 +218,9 @@
show_attachment_flags = bug.show_attachment_flags
%]
[% PROCESS comment_box %]
[% IF user.settings.comment_box_position.value == 'before_comments' %]
[% PROCESS comment_box %]
[% END %]
</td>
<td>
[% PROCESS section_restrict_visibility %]
...
...
@@ -233,6 +235,11 @@
%]
</div>
[% IF user.settings.comment_box_position.value == 'after_comments' %]
<hr>
[% PROCESS comment_box %]
[% END %]
</form>
[%############################################################################%]
...
...
template/en/default/global/setting-descs.none.tmpl
View file @
b25ce729
...
...
@@ -43,6 +43,9 @@
"quote_replies" => "Quote the associated comment when you click on its reply link",
"quoted_reply" => "Quote the full comment",
"simple_reply" => "Reference the comment number only",
"comment_box_position" => "Position of the Additional Comments box",
"before_comments" => "Before other comments",
"after_comments" => "After other comments",
"timezone" => "Timezone used to display dates and times",
"local" => "Same as the server",
}
...
...
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