Hi,
I am getting the following error in my apache error log:
mod_fcgid: stderr: PHP Warning – preg_match_all(): Compilation failed: invalid range in character class at offset 7 – file: /forum-plugins/mentions/library/sp-mentions-components.php – line: 18 – function: preg_match_all.
Line 18 in bold below:
function sp_mentions_find_mentions($content) {
preg_match_all(‘/B@([w-.]+)b/’, $content, $matches);
if ($matches) {
$names = $matches[1];
} else {
$names = array();
}return $names;
}