\"blah blah blah\"\n\"blah blah\"
I found [1.7.0] Guild Info Box has \n in it and extended the fix shown there to cover double quotes as well.
Find this;
- Code: Select all
if( !empty($guild['Info']) )
$this->add_value( 'guild_info_text', $guild['Info'] );
Replace with this:
- Code: Select all
if( !empty($guild['Info']) )
{
$guild['Info'] = str_replace('\n', "\n", $guild['Info']);
$guild['Info'] = str_replace('\"', '"', $guild['Info']);
$this->add_value( 'guild_info_text', $guild['Info']);
}
Then do a guild update and you should now have a clean Guild Info page.