On Jun 27, 2008, at 6:25 AM, Richard Jones wrote:
Hi Alex,
Changing the permalink is quite straightforward, you just need to edit
the following class:
org.apache.roller.weblogger.pojos.WeblogEntry
and change this:
public String createAnchorBase() {
...
tmp = (tmp == null) ? s : tmp + "_" + s;
...
}
to this:
public String createAnchorBase() {
...
tmp = (tmp == null) ? s : tmp + "-" + s;
...
}
Apparently hyphens are more SEO friendly... so I've been told.
Cheers,
Richard
Thanks!
I prefer it for aesthetic reasons too (don't ask why! -- maybe I'm
just too used to MT, WP style permalinks!)
Is there enough of a consensus for me to put a ticket in for this? Or,
at least to make it customisable?
Alex