A error occurs in Line 63
Code: Select all
$parts[$index] = preg_replace_callback($matchString, 'acronymReplace', $part);
this message occurs by over 700 Entries:
[phpBB Debug] PHP Warning: in file /includes/functions_acronym.php on line 63: preg_replace_callback() [function.preg-replace-callback]: Compilation failed: regular expression is too large at offset 22760
Another one misfunction:
includes/acp/acp_lexicon.php should be changed from
Code: Select all
'ALLOW_ACRONYM_IN_WORDS_NO' => $config['allow_acronym'] == 0 ? 'checked="checked"' : '',
'ALLOW_ACRONYM_IN_WORDS_YES' => $config['allow_acronym'] == 1 ? 'checked="checked"' : '',
to
Code: Select all
'ALLOW_ACRONYM_IN_WORDS_NO' => $config['allow_acronym_in_words'] == 0 ? 'checked="checked"' : '',
'ALLOW_ACRONYM_IN_WORDS_YES' => $config['allow_acronym_in_words'] == 1 ? 'checked="checked"' : '',
Thanks for the tip, if someone could test it, i will be happy ...
BTW:
I cant work on this MOD, because I´m very busy on working. I another one will take it over, just go ahead!