blob: d5876c19c6405c07d709e37e7ef79a2ba63d9ae2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
hunk ./lib/twitter.php 31
- // CURLOPT_USERAGENT => "identi.ca",
+ # CURLOPT_USERAGENT => "identi.ca",
hunk ./lib/twitter.php 33
- CURLOPT_TIMEOUT => 120
+ CURLOPT_TIMEOUT => 120,
+ # Twitter is strict about accepting invalid "Expect" headers
+ CURLOPT_HTTPHEADER => array('Expect:')
hunk ./lib/util.php 1574
- CURLOPT_TIMEOUT => 120
+ CURLOPT_TIMEOUT => 120,
+
+ # Twitter is strict about accepting invalid "Expect" headers
+ CURLOPT_HTTPHEADER => array('Expect:')
|