this is a patch? for siggen so it could be used for korean and hopefully chinese.
unzip the files and copy them to your addon/siggen folder
Moderator: zanix
// Get name from browser request
// url_decode() the name, then utf-8_encode() it
if( isset($_GET['name']) )
{
$char_name = utf8_encode(urldecode($_GET['name']));
}
else // Try pulling from a "path_info" request
{
$char_name = utf8_encode(urldecode(substr( $_SERVER['PATH_INFO'],1,-4 )));
}
// Get name from browser request
// url_decode() the name, then utf-8_encode() it
if( isset($_GET['name']) )
{
$char_name = urldecode($_GET['name']);
}
else // Try pulling from a "path_info" request
{
$char_name = urldecode(substr( $_SERVER['PATH_INFO'],1,-4 ));
}
Users browsing this forum: No registered users and 1 guest