diff options
author | Michael Tänzer <neo@nhng.de> | 2011-11-23 01:26:12 +0100 |
---|---|---|
committer | Michael Tänzer <neo@nhng.de> | 2011-11-23 01:26:12 +0100 |
commit | 4653e10b3f44c066dbf09a6de220d135f4e1e731 (patch) | |
tree | d6a8282a0d1bcb28642a00747707e24211511401 /scripts/send_thawte.php.txt | |
parent | 907f7d2c65a3f397435a9a75df85b5dc12f572cf (diff) | |
download | cacert-devel-4653e10b3f44c066dbf09a6de220d135f4e1e731.tar.gz cacert-devel-4653e10b3f44c066dbf09a6de220d135f4e1e731.tar.xz cacert-devel-4653e10b3f44c066dbf09a6de220d135f4e1e731.zip |
bug 827: missing semicolon and don't need wordwrap for lastid
Signed-off-by: Michael Tänzer <neo@nhng.de>
Diffstat (limited to 'scripts/send_thawte.php.txt')
-rw-r--r-- | scripts/send_thawte.php.txt | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/scripts/send_thawte.php.txt b/scripts/send_thawte.php.txt index 19ec223..f02b73c 100644 --- a/scripts/send_thawte.php.txt +++ b/scripts/send_thawte.php.txt @@ -43,7 +43,7 @@ $line = trim(fgets($fp, 4096)); $line = wordwrap($line, 75, "\n")."\n"; $line = mb_convert_encoding($line, "HTML-ENTITIES", "UTF-8"); - $lines_DE .= $line + $lines_DE .= $line; } fclose($fp); } @@ -57,7 +57,7 @@ $line = trim(fgets($fp, 4096)); $line = wordwrap($line, 75, "\n")."\n"; $line = mb_convert_encoding($line, "HTML-ENTITIES", "UTF-8"); - $lines_NL .= $line + $lines_NL .= $line; } fclose($fp); } @@ -71,7 +71,7 @@ $line = trim(fgets($fp, 4096)); $line = wordwrap($line, 75, "\n")."\n"; $line = mb_convert_encoding($line, "HTML-ENTITIES", "UTF-8"); - $lines_FR .= $line + $lines_FR .= $line; } fclose($fp); } @@ -85,7 +85,7 @@ $line = trim(fgets($fp, 4096)); $line = wordwrap($line, 75, "\n")."\n"; $line = mb_convert_encoding($line, "HTML-ENTITIES", "UTF-8"); - $lines_ES .= $line + $lines_ES .= $line; } fclose($fp); } @@ -99,7 +99,7 @@ $line = trim(fgets($fp, 4096)); $line = wordwrap($line, 75, "\n")."\n"; $line = mb_convert_encoding($line, "HTML-ENTITIES", "UTF-8"); - $lines_RU .= $line + $lines_RU .= $line; } fclose($fp); } @@ -109,8 +109,7 @@ if (file_exists("send_thawte_lastid.txt")) { $fp = fopen("send_thawte_lastid.txt", "r"); - $line = fgets($fp, 4096); - $lastid = wordwrap($line, 75, "\n")."\n"; + $lastid = trim(fgets($fp, 4096)); fclose($fp); } |