AmigaLink hat geschrieben::shock: You uses the original files (with case sesitive) and the Problem exists???
Yes, but now i dont use the original files anymore, i editted them here and there.
But i did not change anything what could affect this change not to work.
It all works fine, but when i change that e to an i it gets crumbled up things.
Dont know why that is.
here a screendump of the result before i make the change e to i and one after i made the change in functions_lexicon.php.
Before:
with codeline
$message = str_replace('"', '"', substr(preg_replace('#(\µ(((?>([^µ§]+|(?R)))*)\§))#se', "preg_replace(\$crosslink_word, \$crosslink_url, '\\0')", 'µ' . $message . '§'), 1, -1));
Here you also see that it takes target and replaces it with Target and leaves the url unlinked.
After:
With codeline
$message = str_replace('"', '"', substr(preg_replace('#(\µ(((?>([^µ§]+|(?R)))*)\§))#si', "preg_replace(\$crosslink_word, \$crosslink_url, '\\0')", 'µ' . $message . '§'), 1, -1));
Same thing happens in viewtopic when i do the change there:
Before change with codeline
$message = str_replace('"', '"', substr(preg_replace('#(\µ(((?>([^µ§]+|(?R)))*)\§))#se', "preg_replace(\$quicklink_keyword, \$quicklink_lex_url, '\\0')", 'µ' . $message . '§'), 1, -1));
After change with codeline
$message = str_replace('"', '"', substr(preg_replace('#(\µ(((?>([^µ§]+|(?R)))*)\§))#si', "preg_replace(\$quicklink_keyword, \$quicklink_lex_url, '\\0')", 'µ' . $message . '§'), 1, -1));
Here it does NOT take the target as a lexicon word while there sure is a target in the url when i look at the source in my browser.
