summaryrefslogtreecommitdiff
path: root/modules/drupal.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2002-06-08 10:18:59 +0000
committerDries Buytaert <dries@buytaert.net>2002-06-08 10:18:59 +0000
commit2b3ca2d3aca84a5b54d6fca061d6f6b5f26162d8 (patch)
tree81a232d318e982cc1320ceae2f35257057dda61a /modules/drupal.module
parent7d9fc047f94102fe83962801c3547b1e25ba9961 (diff)
downloadbrdo-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.module2
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;
}