From 8213f5b2627a6b63db9f84b572918bd7e3254dff Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 6 Apr 2001 14:14:16 +0000 Subject: A lot of small changes (search-n-replace) make a big commit: - fixed update bug in book.module - provide a log message when both adding and updating book pages - all configurable variables are now accessed through "variable_get()": - rewrote watchdog and submission throttle and removed watchdog.inc - improved robustness of sections.inc - imporved story.module - updated ./database/database.sql --- modules/backend.class | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'modules/backend.class') diff --git a/modules/backend.class b/modules/backend.class index b31372fb5..6c0914d57 100644 --- a/modules/backend.class +++ b/modules/backend.class @@ -46,8 +46,6 @@ class backend { } function url2sql($timout = 10) { - global $site_name; - if ($this->file) { // Decode URL: $url = parse_url($this->file); @@ -57,7 +55,7 @@ class backend { if ($fp) { // Request data via URL: - fputs($fp, "GET $url[path]?$url[query] HTTP/1.0\nUser-Agent: $site_name\nHost: $url[host]\nAccept: */*\n\n"); + fputs($fp, "GET $url[path]?$url[query] HTTP/1.0\nUser-Agent: ". variable_get(site_name, "drupal") ."\nHost: $url[host]\nAccept: */*\n\n"); // Read data from socket: while(!feof($fp)) $data .= fgets($fp, 128); -- cgit v1.2.3