diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-06-08 10:09:03 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-06-08 10:09:03 +0000 |
commit | 7d9fc047f94102fe83962801c3547b1e25ba9961 (patch) | |
tree | 027c909be61a6599d48e77e1fd17c835b8b5fc52 /modules/drupal | |
parent | 19736b42255e69a1f2ce4933da7e6eaf9b25c968 (diff) | |
download | brdo-7d9fc047f94102fe83962801c3547b1e25ba9961.tar.gz brdo-7d9fc047f94102fe83962801c3547b1e25ba9961.tar.bz2 |
- Clarified the help texts a bit.
Diffstat (limited to 'modules/drupal')
-rw-r--r-- | modules/drupal/drupal.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module index 6468076eb..2ae97f74d 100644 --- a/modules/drupal/drupal.module +++ b/modules/drupal/drupal.module @@ -6,8 +6,8 @@ function drupal_system($field){ } function drupal_conf_options() { - $output .= form_textfield("Drupal 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."); + $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>."); return $output; } |