summaryrefslogtreecommitdiff
path: root/modules/drupal/drupal.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2004-01-07 19:52:10 +0000
committerDries Buytaert <dries@buytaert.net>2004-01-07 19:52:10 +0000
commit94f6e94ffdb72e0ac78c5d06ec95a9e6f9f6f47f (patch)
tree9456e655f26c86076bd97f4cdaae4c2cc76684fe /modules/drupal/drupal.module
parent9352d6abf8cc4cbf78e6a92e6cfb18b1d9fc750f (diff)
downloadbrdo-94f6e94ffdb72e0ac78c5d06ec95a9e6f9f6f47f.tar.gz
brdo-94f6e94ffdb72e0ac78c5d06ec95a9e6f9f6f47f.tar.bz2
- Many excellent news aggregator improvements by Kjartan:
+ Added drupal_http_request(). + Replaced rssfeeds with OPML feed subscription list. + Added support for pubDate. + Added support for conditional gets using ETag and Last-Modified.
Diffstat (limited to 'modules/drupal/drupal.module')
-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 5f3bb5ada..61c73f8ab 100644
--- a/modules/drupal/drupal.module
+++ b/modules/drupal/drupal.module
@@ -36,7 +36,7 @@ function drupal_settings() {
$error["drupal_directory"] = theme("error", t("You must set your site's slogan at the <a href=\"%url\">site configuration</a>.", array("%url" => url("admin/system"))));
else if (variable_get("site_mission", "") == "")
$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/system"))));
-
+
$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 \"%xml-rpc-server\" field is set to \"%drupal-xml-rpc\", your web site will get listed on the %drupal-sites page. Requires the cron feature to be enabled.", array("%xml-rpc-server" => t("Drupal XML-RPC server"), "%drupal-xml-rpc" => "http://www.drupal.org/xmlrpc.php", "%drupal-sites" => "<a href=\"http://www.drupal.org/sites\">".t("Drupal sites")."</a>")) . $error["drupal_directory"]);