summaryrefslogtreecommitdiffstats
path: root/docs/en/xml/customization.xml
diff options
context:
space:
mode:
authormozilla%colinogilvie.co.uk <>2008-04-04 13:47:58 +0200
committermozilla%colinogilvie.co.uk <>2008-04-04 13:47:58 +0200
commit640f75fd5858269e7fe071c8ba55ac206d4458c4 (patch)
tree5a29417744e9587fb397a2c09d968da3d9cd8eb6 /docs/en/xml/customization.xml
parenta3f49baa39eb63e998244a84c9aa1405128f96f9 (diff)
downloadbugzilla-640f75fd5858269e7fe071c8ba55ac206d4458c4.tar.gz
bugzilla-640f75fd5858269e7fe071c8ba55ac206d4458c4.tar.xz
Docs fixes for Bug 298827: builtin or built-in and Bug 298832: ie (sp)
Patch by Frank Wein <bugzilla@mcsmurf.de>, r=me
Diffstat (limited to 'docs/en/xml/customization.xml')
-rw-r--r--docs/en/xml/customization.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/en/xml/customization.xml b/docs/en/xml/customization.xml
index 14ac3f86a..49b73319e 100644
--- a/docs/en/xml/customization.xml
+++ b/docs/en/xml/customization.xml
@@ -153,7 +153,7 @@
to properly HTML filter data that has been passed into the template.
This means that if the data can possibly contain special HTML characters
such as &lt;, and the data was not intended to be HTML, they need to be
- converted to entity form, ie &amp;lt;. You use the 'html' filter in the
+ converted to entity form, i.e. &amp;lt;. You use the 'html' filter in the
Template Toolkit to do this. If you forget, you may open up
your installation to cross-site scripting attacks.
</para>
@@ -162,7 +162,7 @@
Also note that Bugzilla adds a few filters of its own, that are not
in standard Template Toolkit. In particular, the 'url_quote' filter
can convert characters that are illegal or have special meaning in URLs,
- such as &amp;, to the encoded form, ie %26. This actually encodes most
+ such as &amp;, to the encoded form, i.e. %26. This actually encodes most
characters (but not the common ones such as letters and numbers and so
on), including the HTML-special characters, so there's never a need to
HTML filter afterwards.
@@ -665,7 +665,7 @@
Certain marked sections should not be changed - these are
the <quote>plumbing</quote> which makes the rest of the function work.
In between those sections, you'll find snippets of code like:
- <programlisting> # Allow the owner to change anything.
+ <programlisting> # Allow the assignee to change anything.
if ($ownerid eq $whoid) {
return 1;
}</programlisting>