Tue 14th Oct '08 8:20pm
|
|
|
|
ImpEx username import issue with special characters (phpbb2 -> vb 3.7)
special characters &, < and/or > are imported incorrectly
I have imported users from phpbb2 to vbulletin 3.73 pl1. It looks like the special characters &, < and > are not imported correctly:
Displayed username in phpbb2:
Code:
1. & #40 & #31;& (without the spaces)
2. <<*_mango_*>&
Username in phpbb2 database (viewed via phpmyadmin):
Code:
1. &#40;&#31;&
2. <<*_mango_*>&
Username in vbulletin database:
Code:
1. &amp;#40;&amp;#31;&
2. &lt;&lt;*_mango_*&gt;&
& is converted to &amp; or & (so if the & is at the end it will be converted correctly).
< is converted to &lt;
> is converted to &gt;
There might be other characters which are not imported correctly.
|