diff options
author | timeless%mozdev.org <> | 2007-07-24 04:04:53 +0000 |
---|---|---|
committer | timeless%mozdev.org <> | 2007-07-24 04:04:53 +0000 |
commit | 025a06c429aa15672534ef3a1c7cb51dec89c29c (patch) | |
tree | b60a55988a5be86e122bebaa782eed0cd67f327f | |
parent | a1d40e5a33fe1cae729b5c7b7e77a54b4ab17271 (diff) | |
download | bugs-025a06c429aa15672534ef3a1c7cb51dec89c29c.tar bugs-025a06c429aa15672534ef3a1c7cb51dec89c29c.tar.gz bugs-025a06c429aa15672534ef3a1c7cb51dec89c29c.tar.bz2 bugs-025a06c429aa15672534ef3a1c7cb51dec89c29c.tar.xz bugs-025a06c429aa15672534ef3a1c7cb51dec89c29c.zip |
Bug 383595 "allows to" isn't correct
r=mkanat a=mkanat
-rw-r--r-- | Bugzilla/DB/Mysql.pm | 8 | ||||
-rw-r--r-- | docs/xml/administration.xml | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/Bugzilla/DB/Mysql.pm b/Bugzilla/DB/Mysql.pm index 582df3d54..25ee32b64 100644 --- a/Bugzilla/DB/Mysql.pm +++ b/Bugzilla/DB/Mysql.pm @@ -190,10 +190,10 @@ sub sql_position { sub sql_group_by { my ($self, $needed_columns, $optional_columns) = @_; - # MySQL allows to specify all columns as ANSI SQL requires, but also - # allow you to specify just minimal subset to get unique result. - # According to MySQL documentation, the less columns you specify - # the faster the query runs. + # MySQL allows you to specify the minimal subset of columns to get + # a unique result. While it does allow specifying all columns as + # ANSI SQL requires, according to MySQL documentation, the fewer + # columns you specify, the faster the query runs. return "GROUP BY $needed_columns"; } diff --git a/docs/xml/administration.xml b/docs/xml/administration.xml index fbaeb3c33..1fe8b9d72 100644 --- a/docs/xml/administration.xml +++ b/docs/xml/administration.xml @@ -202,7 +202,7 @@ </term> <listitem> <para> - This allows to define specific users that will + This allows you to define specific users who will receive notification each time a new bug in entered, or when an existing bug changes, according to the normal groupset permissions. It may be useful for sending notifications to a |