diff options
author | jocuri%softhome.net <> | 2005-06-09 18:32:24 +0200 |
---|---|---|
committer | jocuri%softhome.net <> | 2005-06-09 18:32:24 +0200 |
commit | 2b337127f0bbe9a9508f97d58a8726f54f7d873f (patch) | |
tree | bd1c26b77d19263b2636373140fd912859fa7c71 | |
parent | 461633bacc4f1c47b50e67219a7c8ec0a16bad7d (diff) | |
download | bugzilla-2b337127f0bbe9a9508f97d58a8726f54f7d873f.tar.gz bugzilla-2b337127f0bbe9a9508f97d58a8726f54f7d873f.tar.xz |
Patch for bug 291600: replace "iff" with "if and only if"; r=LpSolit, a=justdave.
-rw-r--r-- | Bugzilla/Config.pm | 4 | ||||
-rw-r--r-- | quicksearch.js | 4 | ||||
-rw-r--r-- | template/en/default/list/quips.html.tmpl | 3 |
3 files changed, 6 insertions, 5 deletions
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index 4a08d1819..ad5666823 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -299,8 +299,8 @@ sub WriteParams { ChmodDataFile("$datadir/params", 0666); } -# Some files in the data directory must be world readable iff we don't have -# a webserver group. Call this function to do this. +# Some files in the data directory must be world readable if and only if +# we don't have a webserver group. Call this function to do this. # This will become a private function once all the datafile handling stuff # moves into this package diff --git a/quicksearch.js b/quicksearch.js index b72f96b7a..29ab6eb6b 100644 --- a/quicksearch.js +++ b/quicksearch.js @@ -334,8 +334,8 @@ function make_query_URL(url, input, searchLong) { // This function matches the given prefixes against the given statuses and // resolutions. Matched statuses are added to bug_status, matched - // resolutions are added to resolution. Returns true iff some matches - // were found for at least one of the given prefixes. + // resolutions are added to resolution. Returns true if and only if + // some matches were found for at least one of the given prefixes. function matchPrefixes(prefixes,statuses,resolutions) { var failedPrefixes = new Array(); var foundMatch = false; diff --git a/template/en/default/list/quips.html.tmpl b/template/en/default/list/quips.html.tmpl index c43822aa1..39b7c3840 100644 --- a/template/en/default/list/quips.html.tmpl +++ b/template/en/default/list/quips.html.tmpl @@ -23,7 +23,8 @@ # added_quip: string. Defined if the CGI added a quip data before # displaying anything; if defined, its value is that quip. # show_quips: boolean. True if we are showing the entire quip list. - # quips: list of strings. Defined iff show_quips is true. List of all quips. + # quips: list of strings. Defined if and only if show_quips is true. + # List of all quips. #%] [% PROCESS global/variables.none.tmpl %] |