by knarf » Sat Nov 08, 2008 3:57 am
For me changing it to /ALT-([^\s]+)/i worked fine for a while (not whitespace instead of standard-characters, \S should also work). But right now it is not working with 2.0.0 and the latest SVN 2.0.9.1891.
A problem seems to be in line 149 of
addons/memberslist/inc/install.def.php
$installer->add_config("6000,'getmain_regex','/ALT-([\\\\w]+)/i'
,'text{50|30','build'");
Mains do only match if they have no Umlauts in their name. After changing this regexp to \S, the mains start to appear in the Log:
# Bluébell - No main match - Alt of Blu�bell - Invalid main - Mainless alt
The Umlaut is not displayed correctly, it should be an é.
I don't know where to search further. Seems to be an UTF-8 related problem.
Knarf