summaryrefslogtreecommitdiff
path: root/modules/drupal.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-06-29 19:41:04 +0000
committerDries Buytaert <dries@buytaert.net>2004-06-29 19:41:04 +0000
commitf04547efd1a1179f8bef16dc8d8c6ef4c4fa9c07 (patch)
tree350c09593a6fc1fe0b06059d36212f1bb8cfc882 /modules/drupal.module
parent93b56f507326f8e013d8fd8665dd5185314b9d70 (diff)
downloadbrdo-f04547efd1a1179f8bef16dc8d8c6ef4c4fa9c07.tar.gz
brdo-f04547efd1a1179f8bef16dc8d8c6ef4c4fa9c07.tar.bz2
- Patch #8908 by Junyor: fixed broken link on the drupal.module setting page.
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 61efcb8c1..9cd2f3632 100644
--- a/modules/drupal.module
+++ b/modules/drupal.module
@@ -38,7 +38,7 @@ function drupal_settings() {
$error['drupal_directory'] = theme('error', t("You must set your site's mission at the <a href=\"%url\">site configuration</a>.", array('%url' => url('admin'))));
$output = form_textfield(t('Drupal XML-RPC server'), 'drupal_server', variable_get('drupal_server', 'http://www.drupal.org/xmlrpc.php'), 55, 128, t('The URL of your root Drupal XML-RPC server.'));
- $output .= form_radios(t('Drupal directory'), 'drupal_directory', variable_get('drupal_directory', 0), array(t('Disabled'), t('Enabled')), t("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 must set your site's name, e-mail address, slogan and mission statement. When the \"Drupal XML-RPC server\" field is set to \"%drupal-xml-rpc\", your web site will get listed on the <a href=\"%drupal-sites\">Drupal sites</a> page. Requires the cron feature to be enabled.", array('%drupal-xml-rpc' => 'http://www.drupal.org/xmlrpc.php')) . $error['drupal_directory']);
+ $output .= form_radios(t('Drupal directory'), 'drupal_directory', variable_get('drupal_directory', 0), array(t('Disabled'), t('Enabled')), t("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 must set your site's name, e-mail address, slogan and mission statement. When the \"Drupal XML-RPC server\" field is set to \"%drupal-xml-rpc\", your web site will get listed on the <a href=\"%drupal-sites\">Drupal sites</a> page. Requires the cron feature to be enabled.", array("%drupal-xml-rpc" => "http://www.drupal.org/xmlrpc.php", "%drupal-sites" => "http://www.drupal.org/sites/")) . $error['drupal_directory']);
return $output;
}