diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-06-08 10:18:59 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-06-08 10:18:59 +0000 |
commit | 2b3ca2d3aca84a5b54d6fca061d6f6b5f26162d8 (patch) | |
tree | 81a232d318e982cc1320ceae2f35257057dda61a /modules/drupal.module | |
parent | 7d9fc047f94102fe83962801c3547b1e25ba9961 (diff) | |
download | brdo-2b3ca2d3aca84a5b54d6fca061d6f6b5f26162d8.tar.gz brdo-2b3ca2d3aca84a5b54d6fca061d6f6b5f26162d8.tar.bz2 |
- More documentation updates. Added "Requires crontab" message to the
settings that require crontab, make some things more consistent, etc.
Diffstat (limited to 'modules/drupal.module')
-rw-r--r-- | modules/drupal.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/drupal.module b/modules/drupal.module index 2ae97f74d..1c852e80c 100644 --- a/modules/drupal.module +++ b/modules/drupal.module @@ -7,7 +7,7 @@ function drupal_system($field){ function drupal_conf_options() { $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>."); + $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."); return $output; } |