[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2014-03-28 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #25 from Nemo  ---
Comment 20, 22, 24: split to bug 63242 "ccnorm revamp: add a more sensible
interface for normalised comparison".

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2014-03-28 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #24 from Nemo  ---
(In reply to Helder from comment #23)
> so it is not possible to distinguish between the letters "i", "I" etc... and
> the regex symbol "|".

That's not really a problem. The point is that to compare two things they must
*both* be normalised, you can't just assume you know what's the normalised
form. So if not

> words :="testing|vandalizing";
> ccnorm(added_lines) rlike ccnorm(words)

then

words :="ccnorm(testing)|ccnorm(vandalizing)";
ccnorm(added_lines) rlike words

as long as they're not apple and oranges.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-11-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #23 from Helder  ---
(In reply to comment #22)
The problem is that

ccnorm( '\\{}()[].?*+-^$|1iI' )
=== '\\{}()[].?*+-^$'

so it is not possible to distinguish between the letters "i", "I" etc... and
the regex symbol "|".

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-11-23 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #22 from Ryan Kaldari  ---
Is it possible right now to do something like:

words :="testing|vandalizing";
ccnorm(added_lines) rlike ccnorm(words)

That would at least make the filters a lot more readable (until something like
Tim's solution was implemented).

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-11-08 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #21 from Helder  ---
(In reply to comment #20)
> (In reply to comment #19)
> > We need to use regex syntax ([abc], [^abc] ^, $, ?, etc).
> 
> Well, how about
> 
> added_lines cclike "testing|vandalizing"
> 
> Where the regex would be tokenized and reassembled, with alphabetic parts
> normalised with equivset?

Seems good, if that is feasible.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-11-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #20 from Tim Starling  ---
(In reply to comment #19)
> We need to use regex syntax ([abc], [^abc] ^, $, ?, etc).

Well, how about

added_lines cclike "testing|vandalizing"

Where the regex would be tokenized and reassembled, with alphabetic parts
normalised with equivset?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-11-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #19 from Helder  ---
We need to use regex syntax ([abc], [^abc] ^, $, ?, etc). See e.g. the
discussion (in Portuguese) about
https://pt.wikipedia.org/wiki/Special:AbuseFilter/18
at
https://pt.wikipedia.org/wiki/WP:Filtro_de_edições/18#Filtro_112_quebrou.21

PS: I use the [[Special:AbuseFilter/tools]] to get the value of
ccnorm('foobar') to put into the regex

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-11-06 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Tim Starling  changed:

   What|Removed |Added

 CC||tstarl...@wikimedia.org

--- Comment #18 from Tim Starling  ---
I don't really understand this bug. Surely the real issue is that the output of
ccnorm() is exposed to the user, rather than being hidden in some opaque
object? There's no way you could generate a canonical form which would make
sense for readers of every language. Wouldn't the use case described in the
original report be better served by syntax along the lines of:

added_lines cclike ["testing", "vandalizing"]

rather than requiring the user to look up a table of confusable characters in
git and convert each character by hand or something?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-26 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Nemo  changed:

   What|Removed |Added

 CC||federicol...@tiscali.it

--- Comment #17 from Nemo  ---
Kaldari, *thank you* for working on this!

(In reply to comment #15)
> It's sad such a trivial-to-fix bug was
> allowed to languish for 4 years leading to so many workarounds.

Indeed. The AbuseFilter component has not received much (systematic) love in
the last 4-5 years, I'm sure there's plenty of such low hanging fruit which
could be found with some bug triaging by people knowing the underlying
PHP/AntiSpoof magic/libraries a bit.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-26 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Gerrit Notification Bot  changed:

   What|Removed |Added

 Status|REOPENED|PATCH_TO_REVIEW

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-26 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #16 from Gerrit Notification Bot  ---
Change 92057 had a related patch set uploaded by Kaldari:
Make sure AntiSpoof mappings are mapping in the correct direction. For example,
5 should map to S, not the other way around. Also correcting some lowercase to
uppercase mappings. There are a lot more mappings in equivset.in that need to
be fixed but this 

https://gerrit.wikimedia.org/r/92057

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Ryan Kaldari  changed:

   What|Removed |Added

   Assignee|wikibugs-l@lists.wikimedia. |rkald...@wikimedia.org
   |org |

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #15 from Ryan Kaldari  ---
Legoktm: Sorry for suggesting you didn't understand the bug. You were totally
right that the bug was in AntiSpoof, not AbuseFilter. I was originally thinking
that Abusefilter was reversing all the mappings, but it turns out that
AntiSpoof/equivset.php is just a big mess. Not sure how it got into such a
sorry state.

Luckily, it looks like AntiSpoof doesn't actually use equivset.php itself,
which probably means that CentralAuth is OK as well. Fixing all the AbuseFilter
rules is going to be a mess though. It's sad such a trivial-to-fix bug was
allowed to languish for 4 years leading to so many workarounds.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #14 from Kunal Mehta (Legoktm)  ---
(In reply to comment #13)
> I'm not sure I agree with that, but shouldn't this bug be in the AntiSpoof
> component then?
> 
Mid-air collision. Thanks for moving it.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #13 from Kunal Mehta (Legoktm)  ---
I'm not sure I agree with that, but shouldn't this bug be in the AntiSpoof
component then?

If someone does want to switch them, they're going to need to somehow
coordinate regenerating the spoof user table on every wiki + centralauth as
well as updating any abusefilter rule on every wiki that uses ccnorm.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Ryan Kaldari  changed:

   What|Removed |Added

 CC||soxre...@gmail.com
  Component|AbuseFilter |AntiSpoof

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #12 from Ryan Kaldari  ---
Sorry, meant to say 'value and key reversed' not 'index and key reversed' :)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #11 from Ryan Kaldari  ---
This bug is actually trivial to fix. It looks like there are a handful of
entries in AntiSpoof/equivset.php that have the index and key reversed. Among
them, the 4 mentioned in the bug summary: I, L, O, and S. The only problem with
fixing this bug is it will temporarily break some AbuseFilter filters that were
previously working around this bug.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Ryan Kaldari  changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
 Resolution|INVALID |---

--- Comment #10 from Ryan Kaldari  ---
Legoktm: I think you are misunderstanding the bug. Yes, the characters are
supposed to be mapped, but they are being mapped in the wrong direction.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Kunal Mehta (Legoktm)  changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||legoktm.wikipe...@gmail.com
 Resolution|--- |INVALID

--- Comment #9 from Kunal Mehta (Legoktm)  ---
l is a look-alike character to 1, O is a lookalike to 0 and S is a lookalike to
5. This isn't going to be changed in the AbuseFilter extension, since it just
uses the normalizations from AntiSpoof. If there are characters that arent
being normalized properly, file bugs against AntiSpoof.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-25 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Ryan Kaldari  changed:

   What|Removed |Added

 CC||rkald...@wikimedia.org

--- Comment #8 from Ryan Kaldari  ---
*** Bug 56189 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-10-06 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #7 from Helder  ---
(In reply to comment #5)
> In general you should use ccnorm() on both items in a comparison.
> 
> i.e. you should use ccnorm(new_wikitext) contains ccnorm("Vandalism")

But then we cannot use "|" in the regular expression, since
ccnorm( 'ab|cd|...|yz' ) === 'AB1CD1...1YZ'

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2013-03-27 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Nischay Nahata  changed:

   What|Removed |Added

 CC||nischay...@gmail.com

--- Comment #6 from Nischay Nahata  ---
(In reply to comment #5)
> In general you should use ccnorm() on both items in a comparison.
> 
> i.e. you should use ccnorm(new_wikitext) contains ccnorm("Vandalism")

In that case close this bug as invalid or some changes in equivset.in ?

-- 
You are receiving this mail because:
You are on the CC list for the bug.
You are the assignee for the bug.
You are watching all bug changes.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2012-02-10 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #5 from Andrew Garrett  2012-02-10 23:50:59 
UTC ---
In general you should use ccnorm() on both items in a comparison.

i.e. you should use ccnorm(new_wikitext) contains ccnorm("Vandalism")

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2011-12-26 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Nikola Kovacs  changed:

   What|Removed |Added

 CC||nx.devn...@gmail.com

--- Comment #4 from Nikola Kovacs  2011-12-26 21:25:16 
UTC ---
The list is part of Extension:AntiSpoof. The file is
http://svn.wikimedia.org/viewvc/mediawiki/trunk/extensions/AntiSpoof/maintenance/equivset.in

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2011-12-14 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

mybugs.m...@gmail.com changed:

   What|Removed |Added

 CC||hexm...@gmail.com

--- Comment #3 from mybugs.m...@gmail.com 2011-12-14 18:27:50 UTC ---
Besides the characters mentioned above, "ï" should be converted to "I".

Does anyone knows if this bug is complicated to fix?

I imagine there is some list of conversion pairs somewhere which just needs to
be updated.

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2011-10-07 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

mybugs.m...@gmail.com changed:

   What|Removed |Added

   Severity|minor   |normal

--- Comment #2 from mybugs.m...@gmail.com 2011-10-07 18:02:41 UTC ---
These inconsistencies on ccnorm just caused one more false positive on
Portuguese Wikibooks. It should convert "ó" to "O" but it is always converting
to "ó" (i.e. it doesn't change this character).

Please fix this!

https://pt.wikibooks.org/wiki/Especial:AbuseLog/1550
https://pt.wikibooks.org/wiki/Especial:AbuseFilter/history/9/diff/prev/103

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.
___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2011-04-28 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

--- Comment #1 from mybugs.m...@gmail.com 2011-04-28 14:36:34 UTC ---
This caused a false positive on this edit
http://pt.wikibooks.org/?diff=218742&oldid=218711
and forced us to workaround the bug adding "015" to some regexes in the filter:
http://pt.wikibooks.org/wiki/Especial:AbuseFilter/history/9/diff/prev/97

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2011-03-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Ashar Voultoiz  changed:

   What|Removed |Added

 CC||wikibugs-l@lists.wikimedia.
   ||org
  Component|General/Unknown |AbuseFilter
Version|1.17|any
 AssignedTo|wikibugs-l@lists.wikimedia. |agarr...@wikimedia.org
   |org |
Product|MediaWiki   |MediaWiki extensions

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
You are the assignee for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l


[Bug 27987] Function ccnorm shouldn't convert "I" and "L" to "1", "O" to "0" and "S" to "5"

2011-03-11 Thread bugzilla-daemon
https://bugzilla.wikimedia.org/show_bug.cgi?id=27987

Reedy  changed:

   What|Removed |Added

   Severity|enhancement |minor

-- 
Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.
You are on the CC list for the bug.

___
Wikibugs-l mailing list
Wikibugs-l@lists.wikimedia.org
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l