From: <var...@us...> - 2009-06-02 16:06:24
|
Revision: 6844 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=6844&view=rev Author: vargenau Date: 2009-06-02 16:05:45 +0000 (Tue, 02 Jun 2009) Log Message: ----------- Split at underscore Modified Paths: -------------- trunk/lib/stdlib.php Modified: trunk/lib/stdlib.php =================================================================== --- trunk/lib/stdlib.php 2009-06-02 15:57:11 UTC (rev 6843) +++ trunk/lib/stdlib.php 2009-06-02 16:05:45 UTC (rev 6844) @@ -1207,6 +1207,9 @@ $RE[] = "/(?<= |${sep}|^)([À])([[:upper:]][[:lower:]])/"; break; } + // Split at underscore + $RE[] = '/(_)([[:alpha:]])/'; + $RE[] = '/([[:alpha:]])(_)/'; // Split numerals from following letters. $RE[] = '/(\d)([[:alpha:]])/'; // Split at subpage seperators. TBD in WikiTheme.php This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |