in ~/freichat/server/freichat.php , we use a function 'substr', it is used to cut long names, but it is not UTF-8 safe.
So what you can do is stop substr from being called.
search for 'substr' with a text-editor, you will find text as below
$guest = strlen($guest)>20 ? substr($guest,0,8)."..." : $guest;
it should now look like
$guest = strlen($guest)>2000 ? substr($guest,0,8)."..." : $guest;
and the next line:
<iframe src="http://pastebin.com/embed_iframe.php?i=pBvDdVuX" style="border:none;width:100%"></iframe>
it should look as below:
<iframe src="http://pastebin.com/embed_iframe.php?i=VHcdhXpV" style="border:none;width:100%"></iframe>
what we are doing is just stopping the condition which calls substr.
You might find that the names in the head section may get jumbled (I will fix this too) after a refresh
but that will be fixed soon
in ~/freichat/server/freichat.php , we use a function 'substr', it is used to cut long names, but it is not UTF-8 safe.
So what you can do is stop substr from being called.
search for 'substr' with a text-editor, you will find text as below
&lt;code&gt;
$guest = strlen($guest)&gt;20 ? substr($guest,0,8)."..." : $guest;
&lt;/code&gt;
it should now look like
&lt;code&gt;
$guest = strlen($guest)&gt;2000 ? substr($guest,0,8)."..." : $guest;
&lt;/code&gt;
and the next line:
&lt;iframe src="http://pastebin.com/embed_iframe.php?i=pBvDdVuX" style="border:none;width:100%"&gt;&lt;/iframe&gt;
it should look as below:
&lt;iframe src="http://pastebin.com/embed_iframe.php?i=VHcdhXpV" style="border:none;width:100%"&gt;&lt;/iframe&gt;
what we are doing is just stopping the condition which calls substr.
You might find that the names in the head section may get jumbled (I will fix this too) after a refresh
but that will be fixed soon