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
139b556d
Commit
139b556d
authored
Sep 02, 1998
by
terry%netscape.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use POST, not GET. Allow for boolean params.
parent
8d308d62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
1 deletion
+15
-1
editparams.cgi
editparams.cgi
+15
-1
No files found.
editparams.cgi
View file @
139b556d
...
...
@@ -40,7 +40,7 @@ puts "This lets you edit the basic operating parameters of bugzilla. Be careful
puts
"<p>"
puts
"Any item you check Reset on will get reset to its default value."
puts
"<form method=
ge
t action=doeditparams.cgi><table>"
puts
"<form method=
pos
t action=doeditparams.cgi><table>"
set
rowbreak
"<tr><td colspan=2><hr></td></tr>"
puts
$rowbreak
...
...
@@ -56,6 +56,20 @@ foreach i $param_list {
l
{
puts
"<textarea wrap=hard name=
$i
rows=10 cols=80>
[
value_quote
$value
]
</textarea>"
}
b
{
if
{
$value
}
{
set on
"checked"
set off
""
}
else
{
set on
""
set off
"checked"
}
puts
"<input type=radio name=
$i
value=1
$on
>On "
puts
"<input type=radio name=
$i
value=0
$off
>Off"
}
default
{
puts
"<font color=red><blink>Unknown param type
$param
_type(
$i
)!!!</blink></font>"
}
}
puts
"</td></tr>"
puts
$rowbreak
...
...
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