Quote:
Originally Posted by jdingman
I found a new bug too. When a user creates a username with a space in it, it creates the html file -###.html instead of user name-###.html. Is there a way to sanitize that so it doesn't break and leave out the username?
|
This is NOT a bug and the code is WORKING as designed...
HOWEVER, if you really wanted to keep the space... you could do this
in the xml file search for (there should be two instances of it):
Code:
$txt = str_replace(' ', '-', $txt);
<b>And replace it with </b>
Code:
//$txt = str_replace(' ', '-', $txt);
But if a user enters a space in the thread name (or forum name for that matter), it won't be replaced with a "-"
SO a thread name with "this is my thread" (t = 82) would be replaced as
"this is my thread-82.html" as opposed to "this-is-my-thread-82.html"
From a SEO stand point, how does it make a difference whether you keep the space or replace it with a "-"?
I am no expert, but I think this is irrelevent.
Furthermore, if I am not mistaken, the browser would replace the space with a %20