Hey there, got a wee problem - I'm trying to add a link in user post bits, but for some reason I'm getting some concatenation of the character name custom field, and the previous custom field (in this case Biography). Any ideas? thanks
I think I might see the problem - on line 354 this is hard coded:
Code:
$wowchar_server = $post['field1'];
I changed this to reflect a custom field I defined for server and it fixed the problem, but it's a bit hacky.
The problem is that if the custom field 'field1' is already defined, it skips the if statement which would set the realm name correctly:
Code:
if(!$wowchar_server)
{
$wowchar_server = $vbulletin->options['wowcharcode_default_realm'];
$wowchar_use_default = true;
}