diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-05-20 04:36:34 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-05-20 04:36:34 +0000 |
commit | a87f442e05bfc2d9cfa0b4d46fa55719223d42b4 (patch) | |
tree | 7284b7b4c9a3b276430e9f803d0690ae80e3a7e2 /modules/drupal/drupal.module | |
parent | e99d422273c3a547d33f7c370f685aa785d060c7 (diff) | |
download | brdo-a87f442e05bfc2d9cfa0b4d46fa55719223d42b4.tar.gz brdo-a87f442e05bfc2d9cfa0b4d46fa55719223d42b4.tar.bz2 |
- Fixed typo in help. Patch be Al.
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r-- | modules/drupal/drupal.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module index 8e3aaaff9..1489c321e 100644 --- a/modules/drupal/drupal.module +++ b/modules/drupal/drupal.module @@ -22,7 +22,7 @@ function drupal_system($field) { function drupal_settings() { $output .= form_textfield("Drupal XML-RPC server", "drupal_server", variable_get("drupal_server", "http://www.drupal.org/xmlrpc.php"), 55, 128, "The URL of your root Drupal XML-RPC server."); - $output .= form_select("Drupal directory", "drupal_directory", variable_get("drupal_directory", 0), array("Disabled", "Enabled"), "If enabled, your Drupal site will make itself know to the Drupal directory at the specified Drupal XML-RPC server. For this to work properly, you have to set your site's name, e-mail address, slogan and mission statement. When the \"Drupal XML-RPC server\" field is set to \"http://www.drupal.org/xmlrpc.php\", your website will get listed on <a href=\"http://www.drupal.org/\">http://www.drupal.org/</a>. Requires crontab."); + $output .= form_select("Drupal directory", "drupal_directory", variable_get("drupal_directory", 0), array("Disabled", "Enabled"), "If enabled, your Drupal site will make itself known to the Drupal directory at the specified Drupal XML-RPC server. For this to work properly, you have to set your site's name, e-mail address, slogan and mission statement. When the \"Drupal XML-RPC server\" field is set to \"http://www.drupal.org/xmlrpc.php\", your website will get listed on <a href=\"http://www.drupal.org/\">http://www.drupal.org/</a>. Requires crontab."); return $output; } |