Quote Originally Posted by weezee View Post
But I still can't check my links. When I click check link still getting this message:

Warning: preg_match() [function.preg-match]: Unknown modifier '/' in /home/content/w/e/e/weezee/html/xxxxxx_admin/links.php on line 625
open YOUR_ADMIN/links.php

find the the two instances of:

Code:
  if (preg_match('/'.LINKS_CHECK_PHRASE.'/i', $content))
and change them to read as follows:


Code:
 if (preg_match("/".LINKS_CHECK_PHRASE."/i", $content))