There have been fragments on the discussion on the SuggestionBox for 'a while' now. I say fragments because there never seemed to be any resolution. So here's my little scratch in the dirt to mod the Wikka to do so.

It seems to be based upon the function IsWikiName() in /wikka.php, which is in turn referred to by

Before doing this or any other modification, back your shit up. A no brainer, but I thought i'd say it anyway.

/wikka.php
FIND (unmodified: line 666)
  1. function IsWikiName($text) { return preg_match("/^[A-Z,ÄÖÜ][a-z,ßäöü]+[A-Z,0-9,ÄÖÜ][A-Z,a-z,0-9,ÄÖÜ,ßäöü]*$/", $text); }

REPLACE WITH
  1. //MOD: nonwiki usernames : function IsWikiName($text) { return preg_match("/^[A-Z,ÄÖÜ][a-z,ßäöü]+[A-Z,0-9,ÄÖÜ][A-Z,a-z,0-9,ÄÖÜ,ßäöü]*$/", $text); }
  2. function IsWikiName($text) { return preg_match("/^[A-Za-z0-9ÄÖÜäöü]*$/", $text); }



 
There are no comments on this page.
Valid XHTML :: Valid CSS: :: Powered by WikkaWiki