diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 13:52:15 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 13:52:15 +0100 |
commit | cb05e677a96e1312263c0a1c63ee10cea62268b1 (patch) | |
tree | 9234db8ab0c946ed65123181acba0df71524a8eb /include/network.php | |
parent | a86fd26bd86945fe75b7220e149b8986f88feb01 (diff) | |
parent | aaedac8f574278fba89cd11d3d8f1adaeb6b030e (diff) | |
download | volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.gz volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.bz2 volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.zip |
Merge remote-tracking branch 'friendica/master'
Diffstat (limited to 'include/network.php')
-rw-r--r-- | include/network.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/network.php b/include/network.php index e89eb94da..78ed24074 100644 --- a/include/network.php +++ b/include/network.php @@ -22,7 +22,7 @@ function fetch_url($url,$binary = false, &$redirects = 0, $timeout = 0, $accept_ } @curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); - @curl_setopt($ch, CURLOPT_USERAGENT, "Friendika"); + @curl_setopt($ch, CURLOPT_USERAGENT, "Friendica"); if(intval($timeout)) { @@ -105,7 +105,7 @@ function post_url($url,$params, $headers = null, &$redirects = 0, $timeout = 0) curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); curl_setopt($ch, CURLOPT_POST,1); curl_setopt($ch, CURLOPT_POSTFIELDS,$params); - curl_setopt($ch, CURLOPT_USERAGENT, "Friendika"); + curl_setopt($ch, CURLOPT_USERAGENT, "Friendica"); if(intval($timeout)) { curl_setopt($ch, CURLOPT_TIMEOUT, $timeout); |