I found a Problem within the 1stpagenews addon. If there are "umlaute" (like in German) in the post it will be not properly displayed you have to add the following codelines:
Here you add the Umlaute in the array:
$umlaute = array('ä', 'ö', 'ü','Ä','Ö','Ü','ß'); $htmlcode = array('ä', 'ö', 'ü','Ä','Ö','Ü','ß');
paste the lines above, under the following line:
$keepNext=$tid;
AND:
after that line: $topics[$tid]['post_text']=substr(strip_tags(str_replace('<br />', "\n", $res[1])), 0, $maxTxtLength);
you have to paste this:
$topics[$tid]['post_text']=substr(strip_tags(str_replace($umlaute, $htmlcode, $res[1])), 0, $maxTxtLength);
Now it should work!
best regards
Christian Jehle |