diff options
author | Brice Maron <brice@bmaron.net> | 2012-11-17 22:12:24 +0000 |
---|---|---|
committer | Brice Maron <brice@bmaron.net> | 2012-11-17 22:12:24 +0000 |
commit | 4337e0fb99060cae43f7d44f3b4a5822701c2b25 (patch) | |
tree | 055d33931b8da5908857198cf1e9a1b0efa54fdf /lib/util.php | |
parent | 71adad8817ba869eb886c3dc731e3f4f9bbe2f65 (diff) | |
download | nextcloud-server-4337e0fb99060cae43f7d44f3b4a5822701c2b25.tar.gz nextcloud-server-4337e0fb99060cae43f7d44f3b4a5822701c2b25.zip |
Little case fix
Diffstat (limited to 'lib/util.php')
-rwxr-xr-x | lib/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 09b59a2353b..dd3c3721a68 100755 --- a/lib/util.php +++ b/lib/util.php @@ -688,7 +688,7 @@ class OC_Util { curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 10); curl_setopt($curl, CURLOPT_URL, $url); - curl_setopt($ch, CURLOPT_USERAGENT, "Owncloud Server Crawler"); + curl_setopt($ch, CURLOPT_USERAGENT, "ownCloud Server Crawler"); $data = curl_exec($curl); curl_close($curl); |