Hi, We ran into a bug in SearchEngineFriendlyURLFilter. The filter seems to do the match on the first occurance of period
int period = uri.indexOf('.');
...
>
if (uri.regionMatches(period + 1, ext, 0, ext.length()))
>
This obviously fails on urls like /paint.net.cfm/v3
I guess uri.lastIndexOf('.'); should fix the problem?
Jari
--
official tag/function reference: http://openbd.org/manual/
mailing list - http://groups.google.com/group/openbd?hl=en
