Changeset bac9ff3 in github
- Timestamp:
- Jun 25, 2006 6:04:45 AM (7 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- b068a07d
- Parents:
- fb5f4f3
- File:
-
- 1 edited
-
program/steps/mail/spell.inc (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/steps/mail/spell.inc
rdd53e2b rbac9ff3 25 25 $REMOTE_REQUEST = TRUE; 26 26 27 $google = "www.google.com"; 27 $google = "ssl://www.google.com"; 28 $port = 443; 28 29 $lang = $_GET['lang']; 29 30 $path = "/tbproxy/spell?lang=$lang"; … … 31 32 $store = ""; 32 33 33 if ($fp = fsockopen($google, 80, $errno, $errstr, 30))34 if ($fp = fsockopen($google, $port, $errno, $errstr, 30)) 34 35 { 35 36 $out = "POST $path HTTP/1.0\r\n"; … … 40 41 $out .= $data; 41 42 fwrite($fp, $out); 43 42 44 while (!feof($fp)) 43 45 $store .= fgets($fp, 128);
Note: See TracChangeset
for help on using the changeset viewer.
