diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-11-07 19:03:35 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-11-07 19:03:35 +0000 |
commit | ef0fa006ed83a10326ff0affc5f83a55fe591836 (patch) | |
tree | 0c31cb244e9614e020af99482e2bc14e1d99ac50 /modules/drupal/drupal.module | |
parent | 7b915b3c713d238cfda49900bcbfec231bdbb315 (diff) | |
download | brdo-ef0fa006ed83a10326ff0affc5f83a55fe591836.tar.gz brdo-ef0fa006ed83a10326ff0affc5f83a55fe591836.tar.bz2 |
- Usability improvement: replaced many selection boxes by radio buttons.
Patch by Stefan.
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 f360b2c46..888253a1f 100644 --- a/modules/drupal/drupal.module +++ b/modules/drupal/drupal.module @@ -34,7 +34,7 @@ function drupal_help($section = "admin/help#drupal") { 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 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 web site will get listed on <a href=\"http://www.drupal.org/\">http://www.drupal.org/</a>. Requires crontab."); + $output .= form_radios("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 web site will get listed on <a href=\"http://www.drupal.org/\">http://www.drupal.org/</a>. Requires crontab."); return $output; } |