diff options
author | Dries Buytaert <dries@buytaert.net> | 2011-08-12 10:37:54 -0400 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2011-08-12 10:37:54 -0400 |
commit | a3db9f3f72de1b7a1b25cd91f142fc1e2abe1386 (patch) | |
tree | d17d5859c69f5db485c465cdcf6429b3bb284cf7 /includes | |
parent | a8fd86946ec42e618cc9737d826e3db0967d06bb (diff) | |
download | brdo-a3db9f3f72de1b7a1b25cd91f142fc1e2abe1386.tar.gz brdo-a3db9f3f72de1b7a1b25cd91f142fc1e2abe1386.tar.bz2 |
- Patch #1246376 by sun: HTTP_REQUEST_TIMEOUT constant value is not negative.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 67abdef48..6e51c4213 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -89,7 +89,7 @@ define('JS_THEME', 100); * Error code indicating that the request made by drupal_http_request() exceeded * the specified timeout. */ -define('HTTP_REQUEST_TIMEOUT', 1); +define('HTTP_REQUEST_TIMEOUT', -1); /** * Constants defining cache granularity for blocks and renderable arrays. |