summaryrefslogtreecommitdiff
path: root/modules/drupal
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-06-27 18:33:33 +0000
committerDries Buytaert <dries@buytaert.net>2005-06-27 18:33:33 +0000
commit58aee8cdad4baef160f7e0cf6dc5e245a1acc080 (patch)
tree329e6127e5033a4dcb9ebc60031a009c6b53cc90 /modules/drupal
parentd190e16c9ef0214293ea32306bfb49d3d1233654 (diff)
downloadbrdo-58aee8cdad4baef160f7e0cf6dc5e245a1acc080.tar.gz
brdo-58aee8cdad4baef160f7e0cf6dc5e245a1acc080.tar.bz2
- Patch #25603 by Stefan: made the sizes of forms consistent.
TODO: document the defaults in the PHPdoc comments.
Diffstat (limited to 'modules/drupal')
-rw-r--r--modules/drupal/drupal.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module
index 143ee798a..9fd12624b 100644
--- a/modules/drupal/drupal.module
+++ b/modules/drupal/drupal.module
@@ -42,7 +42,7 @@ function drupal_settings() {
else if (variable_get('site_mission', '') == '')
form_set_error('drupal_directory', t('You must set your site mission on the <a href="%url">administer &raquo; settings</a> page.' , array('%url' => url('admin/settings'))));
- $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_textfield(t('Drupal XML-RPC server'), 'drupal_server', variable_get('drupal_server', 'http://www.drupal.org/xmlrpc.php'), 60, 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", "%drupal-sites" => "http://www.drupal.org/drupal-sites/")));
return $output;