You are here

function robotstxt_update_7103 in RobotsTxt 7

Update robots.txt syntax checking link.

File

./robotstxt.install, line 134
Install, update and uninstall functions for the robotstxt module.

Code

function robotstxt_update_7103() {
  $robotstxt = variable_get('robotstxt');
  $robotstxt = str_replace('http://www.sxw.org.uk/computing/robots/check.html', 'http://www.frobee.com/robots-txt-check', $robotstxt);
  variable_set('robotstxt', $robotstxt);
  return t('Updated syntax checking link.');
}