https://bugzilla.wikimedia.org/show_bug.cgi?id=38797

seth <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |email_metawiki_138@wg-karls
                   |                            |ruhe.de

--- Comment #2 from seth <[email protected]> 2012-07-29 
22:49:21 UTC ---
Are these two cases (header and table) the only places, where this automatic
replacing is unwanted? In that case, an quick and dirt^Weasy solution would be
to replace
  '/(.) (?=\\?|:|;|!|%|\\302\\273)/' => '\\1&#160;',
by
  '/([^=|!]) (?=\\?|:|;|!|%|\\302\\273)/' => '\\1&#160;',

or equivalently

  '/[^=|!]\K (?=[?:;!%]|\\302\\273)/' => '&#160;',

However, bug #18443 would lead to a renewal of those pattern, anyway.

-- 
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
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to