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
9044f51b
Commit
9044f51b
authored
Jan 28, 2004
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix validation problem (unescaped ampersands) by making the program listing be CDATA.
parent
9f970402
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
customization.xml
docs/xml/customization.xml
+2
-2
No files found.
docs/xml/customization.xml
View file @
9044f51b
...
@@ -584,7 +584,7 @@
...
@@ -584,7 +584,7 @@
}
</programlisting>
}
</programlisting>
This says that only users in the group "quality_assurance" can change
This says that only users in the group "quality_assurance" can change
the QA Contact field of a bug. Getting more weird:
the QA Contact field of a bug. Getting more weird:
<programlisting>
if (($field eq "priority")
&&
<programlisting>
<![CDATA[
if (($field eq "priority") &&
(Bugzilla->
user->email =~ /.*\@example\.com$/))
(Bugzilla->
user->email =~ /.*\@example\.com$/))
{
{
if ($oldvalue eq "P1") {
if ($oldvalue eq "P1") {
...
@@ -593,7 +593,7 @@
...
@@ -593,7 +593,7 @@
else {
else {
return 0;
return 0;
}
}
}
</programlisting>
}
]]>
</programlisting>
This says that if the user is trying to change the priority field,
This says that if the user is trying to change the priority field,
and their email address is @example.com, they can only do so if the
and their email address is @example.com, they can only do so if the
old value of the field was "P1". Not very useful, but illustrative.
old value of the field was "P1". Not very useful, but illustrative.
...
...
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