First... sorry.. I'm french and I don't speak german... not at all !
I installed the lexicon MOD (2.04) on my phpBBforum (2.0.20).
It worked very well 2 or 3 hours, then (without doing nothing special) look at below how notes/words are displaying now !!! ????
Everything seems to be okay on the APC. I can change/insert a new category/keyword/whatever... but... ???? I thought about a codind problem with french specials accents, maybe... what else could it be ?


Added after 17 hours 4 minutes:
removing the function "init crosslinks" in lexicon.php, and it works, now.

- Code: Alles auswählen
// init crosslinks
$sql = 'SELECT keyword FROM ' . LEXICON_ENTRY_TABLE . ' ORDER BY keyword';
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Error getting lexicon entrys', '', __LINE__, __FILE__, $sql);
}
$crosslink_word = array();
$crosslink_url = array();
while ( $row = $db->sql_fetchrow($result) )
{
$crosslink_word[] = '#\b(' . $row['keyword'] . ')\s#i';
$crosslink_url[] = '<a href="lexicon.' . $phpEx . '?letter=' . $row['keyword'] . '" class="crosslink">' . $row['keyword'] . '</a> ';
$crosslink_word[] = '#\s(' . $row['keyword'] . ')\b#i';
$crosslink_url[] = ' <a href="lexicon.' . $phpEx . '?letter=' . $row['keyword'] . '" class="crosslink">' . $row['keyword'] . '</a>';
}