diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-01-05 05:32:23 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2007-01-05 05:32:23 +0000 |
commit | 365439ffdfd0482f174389552e1d1e2e67a060c3 (patch) | |
tree | 722ea674a698d957e657508c97b2ecba62d22cd4 /includes/common.inc | |
parent | 4026afab01aa4cc232884e680d1962ab5881df92 (diff) | |
download | brdo-365439ffdfd0482f174389552e1d1e2e67a060c3.tar.gz brdo-365439ffdfd0482f174389552e1d1e2e67a060c3.tar.bz2 |
#107015: Code consistency, capitalization of class names.
Diffstat (limited to 'includes/common.inc')
-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 033420b5d..31474eb5c 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -407,7 +407,7 @@ function drupal_access_denied() { * data, and redirect status. */ function drupal_http_request($url, $headers = array(), $method = 'GET', $data = NULL, $retry = 3) { - $result = new StdClass(); + $result = new stdClass(); // Parse the URL, and make sure we can handle the schema. $uri = parse_url($url); |