? tests
Index: README.txt
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/robotstxt/README.txt,v
retrieving revision 1.2
diff -u -p -r1.2 README.txt
--- README.txt	21 Feb 2009 09:04:34 -0000	1.2
+++ README.txt	9 Feb 2010 14:20:04 -0000
@@ -28,7 +28,7 @@ implementing hook_robotstxt(). See robot
 INSTALLATION
 ------------
 
-See http://drupal.org/getting-started/5/install-contrib for instructions on
+See http://drupal.org/getting-started/install-contrib for instructions on
 how to install or update Drupal modules.
 
 Once you have the RobotsTxt modules installed, make sure to delete or rename
Index: robotstxt.admin.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/robotstxt/robotstxt.admin.inc,v
retrieving revision 1.2
diff -u -p -r1.2 robotstxt.admin.inc
--- robotstxt.admin.inc	21 Feb 2009 09:04:34 -0000	1.2
+++ robotstxt.admin.inc	9 Feb 2010 14:20:04 -0000
@@ -21,5 +21,5 @@ function robotstxt_admin_settings() {
     '#wysiwyg' => FALSE,
   );
 
-  return system_settings_form($form);
+  return system_settings_form($form, FALSE);
 }
Index: robotstxt.info
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/robotstxt/robotstxt.info,v
retrieving revision 1.5
diff -u -p -r1.5 robotstxt.info
--- robotstxt.info	7 Mar 2009 14:57:07 -0000	1.5
+++ robotstxt.info	9 Feb 2010 14:20:04 -0000
@@ -5,5 +5,3 @@ core = 7.x
 files[] = robotstxt.module
 files[] = robotstxt.admin.inc
 files[] = robotstxt.install
-
-version = 7.x-dev
Index: robotstxt.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/robotstxt/robotstxt.module,v
retrieving revision 1.6
diff -u -p -r1.6 robotstxt.module
--- robotstxt.module	7 Mar 2009 14:57:07 -0000	1.6
+++ robotstxt.module	9 Feb 2010 14:20:04 -0000
@@ -55,7 +55,7 @@ function robotstxt_robots() {
   $content = array_map('trim', $content);
   $content = array_filter($content);
 
-  drupal_set_header('Content-type: text/plain');
+  drupal_add_http_header('Content-type', 'text/plain');
   echo implode("\n", $content);
   exit;
 }
