Quote:
Originally Posted by Marco van Herwaarden
You should never change a language xml file to change the characterset.
|
but i read article about this
http://www.vbulletin.com/forum/showp...28&postcount=6
Original code in XML
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<language name="Tr-Turkce" vbversion="3.6.0" product="vbulletin" type="custom">
<settings>
<options><![CDATA[1]]></options>
<languagecode><![CDATA[tr]]></languagecode>
<charset><![CDATA[ISO-8859-9]]></charset>
Changed Code
Code:
<?xml version="1.0" encoding="UTF-8"?>
<language name="Tr-Turkce" vbversion="3.6.0" product="vbulletin" type="custom">
<settings>
<options><![CDATA[1]]></options>
<languagecode><![CDATA[tr]]></languagecode>
<charset><![CDATA[UTF-8]]></charset>
is this impossible?i made this but was error

please help me...